mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
9 lines
273 B
TypeScript
9 lines
273 B
TypeScript
|
||
import pathCase = require('path-case');
|
||
|
||
console.log(pathCase('string')); // => "string"
|
||
console.log(pathCase('camelCase')); // => "camel/case"
|
||
console.log(pathCase('sentence case')); // => "sentence/case"
|
||
|
||
console.log(pathCase('MY STRING', 'tr')); // => "my.strıng"
|