blob: 20734a2de3bed88479cace3f25c1c0d993779fbc [file] [log] [blame]
'use strict';
function Url(node) {
// convert `\\` to `/`
node.value = node.value.replace(/\\/g, '/');
}
module.exports = Url;