kebab-case.d.ts 143 B

123456
  1. /**
  2. * @desc simple kebabCase like lodash
  3. *
  4. * kebabCase('fooBar'); => 'foo-bar'
  5. */
  6. export declare function kebabCase(word: string): string;