mirror of
https://github.com/Dvorinka/ClubLogos.git
synced 2026-06-04 03:52:57 +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;
|