6 lines
97 B
JavaScript
6 lines
97 B
JavaScript
|
|
function makeIdentifier(s) {
|
||
|
|
return s.replace(/\//g, "_");
|
||
|
|
}
|
||
|
|
|
||
|
|
module.exports = makeIdentifier;
|