| Current Path : /usr/local/lib/node_modules/@google/gemini-cli/node_modules/es-toolkit/dist/string/ |
| Current File : //usr/local/lib/node_modules/@google/gemini-cli/node_modules/es-toolkit/dist/string/kebabCase.mjs |
import { words } from './words.mjs';
function kebabCase(str) {
const words$1 = words(str);
return words$1.map(word => word.toLowerCase()).join('-');
}
export { kebabCase };