Snake Case
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-typescript --save
Usage
Javascript:
var snakeCase = ; ; //=> "string"; //=> "camel_case"; //=> "sentence_case" ; //=> "my_strıng"
Typescript:
; snakeCase"string"; //=> "string"snakeCase"camelCase"; //=> "camel_case"snakeCase"sentence case"; //=> "sentence_case" snakeCase"MY STRING", "tr"; //=> "my_strıng"
License
MIT