DIR: /proc/self/root/usr/share/nodejs/libtap/lib/ |
Current File : //proc/self/root/usr/share/nodejs/libtap/lib/esc.js |
// turn \ into \\ and # into \#, for stringifying back to TAP module.exports = str => str.replace(/\\/g, '\\\\').replace(/#/g, '\\#') |