zack
feat: πŸš€ Update Chat-nFace configurations
a053984
raw
history blame
137 Bytes
'use strict';
function Url(node) {
// convert `\\` to `/`
node.value = node.value.replace(/\\/g, '/');
}
module.exports = Url;