mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-21 13:27:15 +08:00
9 lines
240 B
TypeScript
9 lines
240 B
TypeScript
|
|
import constantCase = require('constant-case');
|
|
|
|
console.log(constantCase('string')); // => "STRING"
|
|
console.log(constantCase('PascalCase')); // => "PASCAL_CASE"
|
|
|
|
console.log(constantCase('myString', 'tr')); // => "MY_STRİNG"
|
|
|