Urara-Blog/node_modules/.pnpm-store/v3/files/2e/70935c0eac197da2eb0676199b735c2b0ce590741cb4c89623d2db32bc4c3b58a49006216b24784c558c2e51d36ce1bbf5e2157740ba3723bbfab7b0ea54d6
2022-08-14 01:14:53 +08:00

27 lines
No EOL
527 B
Text

"use strict";
exports.__esModule = true;
exports["default"] = stripComments;
function stripComments(str) {
var s = "";
var commentStart = str.indexOf("/*");
var lastEnd = 0;
while (commentStart >= 0) {
s = s + str.slice(lastEnd, commentStart);
var commentEnd = str.indexOf("*/", commentStart + 2);
if (commentEnd < 0) {
return s;
}
lastEnd = commentEnd + 2;
commentStart = str.indexOf("/*", lastEnd);
}
s = s + str.slice(lastEnd);
return s;
}
module.exports = exports.default;