UNPKG
@marteye/studio-cli
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
CLI for MartEye Studio API
@marteye/studio-cli
/
dist
/
node_modules
/
csv-stringify
/
lib
/
utils
/
underscore.js
11 lines
(8 loc)
•
226 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
'use strict'
;
const
underscore =
function
(
str
) {
return
str.
replace
(
/([A-Z])/g
,
function
(
_, match
) {
return
"_"
+ match.
toLowerCase
(); }); };
exports
.
underscore
= underscore;
//# sourceMappingURL=underscore.js.map