GT2/GT2-Android/node_modules/snake-case
Ren Ren Juan c5fd23b54f Get new tree with state verified with current React Native on both platforms 2018-02-12 17:11:06 +00:00
..
LICENSE Get new tree with state verified with current React Native on both platforms 2018-02-12 17:11:06 +00:00
README.md Get new tree with state verified with current React Native on both platforms 2018-02-12 17:11:06 +00:00
package.json Get new tree with state verified with current React Native on both platforms 2018-02-12 17:11:06 +00:00
snake-case.d.ts Get new tree with state verified with current React Native on both platforms 2018-02-12 17:11:06 +00:00
snake-case.js Get new tree with state verified with current React Native on both platforms 2018-02-12 17:11:06 +00:00

README.md

Snake Case

NPM version NPM downloads Build status Test coverage

Snake case a string.

Supports Unicode (non-ASCII characters) and non-string entities, such as objects with a toString property, numbers and booleans. Empty values (null and undefined) will result in an empty string.

Installation

npm install snake-case --save

Usage

var snakeCase = require('snake-case')

snakeCase('string')        //=> "string"
snakeCase('camelCase')     //=> "camel_case"
snakeCase('sentence case') //=> "sentence_case"

snakeCase('MY STRING', 'tr') //=> "my_strıng"

Typings

Includes a TypeScript definition.

License

MIT