source: node_modules/es-toolkit/dist/compat/string/snakeCase.mjs@ a762898

Last change on this file since a762898 was a762898, checked in by istevanoska <ilinastevanoska@…>, 5 months ago

Added visualizations

  • Property mode set to 100644
File size: 287 bytes
Line 
1import { deburr } from './deburr.mjs';
2import { snakeCase as snakeCase$1 } from '../../string/snakeCase.mjs';
3import { normalizeForCase } from '../_internal/normalizeForCase.mjs';
4
5function snakeCase(str) {
6 return snakeCase$1(normalizeForCase(deburr(str)));
7}
8
9export { snakeCase };
Note: See TracBrowser for help on using the repository browser.