awesome-deepseek/node_modules/csv-parse/lib/utils/underscore.js
2025-02-15 18:29:42 +08:00

7 lines
162 B
JavaScript

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