11 lines
294 B
JavaScript
Executable File
11 lines
294 B
JavaScript
Executable File
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.sanitize = void 0;
|
|
function sanitize(url) {
|
|
if (typeof (url) === 'undefined') {
|
|
return;
|
|
}
|
|
return url.replace(/&/g, '&');
|
|
}
|
|
exports.sanitize = sanitize;
|
|
//# sourceMappingURL=utils.js.map
|