mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-08-12 13:00:19 +00: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"
|
|
|