args-tokens
Version:
parseArgs tokens compatibility and more high-performance parser
21 lines • 432 B
TypeScript
//#region src/utils.d.ts
/**
* Entry point of utils.
*
* Note that this entry point is used by gunshi to import utility functions.
*
* @module
*/
/**
* @author kazuya kawaguchi (a.k.a. kazupon)
* @license MIT
*/
/**
* Convert a string to kebab-case.
*
* @param str - A string to convert
* @returns Converted string into kebab-case.
*/
declare function kebabnize(str: string): string;
//#endregion
export { kebabnize };