mirror of
https://github.com/SamEyeBam/animate.git
synced 2025-09-28 06:55:25 +00:00
9 lines
137 B
JavaScript
9 lines
137 B
JavaScript
'use strict';
|
|
|
|
function Url(node) {
|
|
// convert `\\` to `/`
|
|
node.value = node.value.replace(/\\/g, '/');
|
|
}
|
|
|
|
module.exports = Url;
|