MCPcopy
hub / github.com/adaltas/node-csv / underscore

Function underscore

packages/csv-stringify/lib/utils/underscore.js:1–5  ·  view source on GitHub ↗
(str)

Source from the content-addressed store, hash-verified

1const underscore = function (str) {
2 return str.replace(/([A-Z])/g, function (_, match) {
3 return "_" + match.toLowerCase();
4 });
5};
6
7export { underscore };

Callers 1

normalize_optionsFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected