https://github.com/emberjs/ember-string
Ember addon with String-related utilities
https://github.com/emberjs/ember-string
ember ember-addon emberjs
Last synced: 3 months ago
JSON representation
Ember addon with String-related utilities
- Host: GitHub
- URL: https://github.com/emberjs/ember-string
- Owner: emberjs
- License: mit
- Created: 2017-08-04T23:21:12.000Z (almost 8 years ago)
- Default Branch: main
- Last Pushed: 2025-04-11T20:19:58.000Z (3 months ago)
- Last Synced: 2025-04-12T01:21:51.647Z (3 months ago)
- Topics: ember, ember-addon, emberjs
- Language: TypeScript
- Homepage: https://github.com/emberjs/rfc-tracking/issues/26
- Size: 2.19 MB
- Stars: 6
- Watchers: 13
- Forks: 16
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
Awesome Lists containing this project
README
@ember/string [](https://github.com/emberjs/ember-string/actions/workflows/ci.yml)
==============================================================================A set of utilities to transform strings extracted from the core of Ember.
Compatibility
------------------------------------------------------------------------------* Ember.js v3.28 or above
* Ember CLI v3.28 or above
* ember-auto-import v2 or aboveInstallation
------------------------------------------------------------------------------```
ember install @ember/string
```Usage
------------------------------------------------------------------------------This package provides the following imports:
```javascript
import {
camelize,
capitalize,
classify,
dasherize,
decamelize,
underscore,
w,
} from '@ember/string'
```For more documentation, consult [https://emberjs.com/api/ember/4.9/classes/String](https://api.emberjs.com/ember/4.9/classes/String) or the inline documentation in the [source](https://github.com/emberjs/ember-string/blob/main/src/index.ts).
License
------------------------------------------------------------------------------This project is licensed under the [MIT License](LICENSE.md).