animate/webGl/my-threejs-test/node_modules/csso/lib/replace/Url.js

5 lines
111 B
JavaScript
Raw Normal View History

2024-06-24 09:24:00 +00:00
export default function(node) {
// convert `\\` to `/`
node.value = node.value.replace(/\\/g, '/');
};