DefinitelyTyped/types/dashify/dashify-tests.ts
Junyoung Choi (Sai) 861b87f6ba Add dashify (#23092)
* Add dashify

* Use 4 spaces
2018-01-23 10:28:25 -08:00

8 lines
185 B
TypeScript

import dashify = require('dashify');
const output: string = dashify('Foo----Bar');
// => 'foo----bar'
const output2: string = dashify('Foo----Bar', {condense: true});
// => 'foo-bar'