mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-09 19:44:56 +02:00
11 lines
294 B
JavaScript
11 lines
294 B
JavaScript
"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
|