mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-01 12:42:58 +08:00
10 lines
284 B
TypeScript
10 lines
284 B
TypeScript
/// <reference path="constant-case.d.ts" />
|
|
|
|
import constantCase = require('constant-case');
|
|
|
|
console.log(constantCase('string')); // => "STRING"
|
|
console.log(constantCase('PascalCase')); // => "PASCAL_CASE"
|
|
|
|
console.log(constantCase('myString', 'tr')); // => "MY_STRİNG"
|
|
|