mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-18 12:08:59 +08:00
11 lines
379 B
TypeScript
11 lines
379 B
TypeScript
/// <reference path="camel-case.d.ts" />
|
||
|
||
import camelCase = require('camel-case');
|
||
|
||
console.log(camelCase('string')); // => "string"
|
||
console.log(camelCase('dot.case')); // => "dotCase"
|
||
console.log(camelCase('PascalCase')); // => "pascalCase"
|
||
console.log(camelCase('version 1.2.10')); // => "version1_2_10"
|
||
|
||
console.log(camelCase('STRING 1.2', 'tr')); // => "strıng1_2"
|