Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ianstormtaylor/to-no-case
Remove an existing case from a string.
https://github.com/ianstormtaylor/to-no-case
case utility
Last synced: 2 months ago
JSON representation
Remove an existing case from a string.
- Host: GitHub
- URL: https://github.com/ianstormtaylor/to-no-case
- Owner: ianstormtaylor
- Created: 2013-09-19T04:26:27.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2016-10-26T00:36:41.000Z (about 8 years ago)
- Last Synced: 2024-10-12T02:52:58.778Z (3 months ago)
- Topics: case, utility
- Language: JavaScript
- Size: 38.1 KB
- Stars: 17
- Watchers: 3
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: Readme.md
- Changelog: History.md
Awesome Lists containing this project
README
# to-no-case [![Build Status](https://travis-ci.org/ianstormtaylor/to-no-case.svg?branch=master)](https://travis-ci.org/ianstormtaylor/to-no-case)
Remove any existing casing from a string. Part of the series of [case helpers](https://github.com/ianstormtaylor/to-case).
## Installation
```
$ npm install to-no-case
```## Example
```js
var toNoCase = require('to-no-case')toNoCase('camelCase') // "camel case"
toNoCase('snake_case') // "snake case"
toNoCase('slug-case') // "slug case"
toNoCase('Title of Case') // "title of case"
toNoCase('Sentence case.') // "sentence case."
toNoCase('RAnDom -jUNk$__loL!') // "random -junk$__lol!"
```If you specifically want to receive `space case` strings as the output, without any other odd characters, check out [`to-space-case`](https://github.com/ianstormtaylor/to-space-case) instead. Or one of the other [case helpers](https://github.com/ianstormtaylor/to-case).
## API
### toNoCase(string)
Returns the `string` with any existing casing removed.## License
The MIT License (MIT)
Copyright © 2016, Ian Storm Taylor
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.