Files
Shifted/node_modules/csv-parse/lib/utils/underscore.js
2026-02-10 01:14:19 +00:00

8 lines
162 B
JavaScript

const underscore = function (str) {
return str.replace(/([A-Z])/g, function (_, match) {
return "_" + match.toLowerCase();
});
};
export { underscore };