https://github.com/methodgrab/atom-underscore-string
Wraps underscore.string’s string manipulation functions for use in Atom
https://github.com/methodgrab/atom-underscore-string
atom atom-editor atom-package
Last synced: 2 months ago
JSON representation
Wraps underscore.string’s string manipulation functions for use in Atom
- Host: GitHub
- URL: https://github.com/methodgrab/atom-underscore-string
- Owner: MethodGrab
- License: isc
- Created: 2017-04-07T20:28:23.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2020-08-20T23:25:22.000Z (almost 5 years ago)
- Last Synced: 2025-03-22T10:23:57.190Z (3 months ago)
- Topics: atom, atom-editor, atom-package
- Language: JavaScript
- Homepage: https://atom.io/packages/underscore-string
- Size: 10.7 KB
- Stars: 3
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
# atom-underscore-string [](https://travis-ci.org/MethodGrab/atom-underscore-string)
[](https://atom.io/packages/underscore-string)
> Wraps [underscore.string](https://github.com/epeli/underscore.string)’s string manipulation functions for use in Atom.
## Getting Started
Install the package with `apm install underscore-string`## Keybindings
There are no default keybindings but you can add your own by editing your `keymap.cson` file, eg:```cson
'atom-workspace':
'ctrl-alt-s': 'underscore-string:slugify'
```## API
The following underscore.string methods are currently available:
- `camelize`
- `capitalize`
- `chars`
- `classify`
- `clean`
- `cleanDiacritics`
- `dasherize`
- `decapitalize`
- `escapeHTML`
- `escapeRegExp`
- `humanize`
- `lines`
- `ltrim`
- `pred`
- `quote`
- `reverse`
- `rtrim`
- `slugify`
- `stripTags`
- `succ`
- `swapCase`
- `titleize`
- `toNumber`
- `trim`
- `underscored`
- `unescapeHTML`
- `unquote`
- `word`