mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-29 00:51:29 +08:00
9 lines
282 B
TypeScript
9 lines
282 B
TypeScript
|
||
import camelCase = require('snake-case');
|
||
|
||
console.log(camelCase('string')); // => "string"
|
||
console.log(camelCase('camelCase')); // => "camel_case"
|
||
console.log(camelCase('sentence case')); // => "sentence_case"
|
||
|
||
console.log(camelCase('MY STRING', 'tr')); // => "my_strıng"
|