mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00: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"
|
|
|