mirror of
https://github.com/nodejs/node.git
synced 2025-05-14 06:21:00 +00:00

PR-URL: https://github.com/nodejs/node/pull/44119 Reviewed-By: Ruy Adorno <ruyadorno@google.com> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Myles Borins <myles.borins@gmail.com>
27 lines
527 B
JavaScript
27 lines
527 B
JavaScript
"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; |