Sha256: f589eefb815cf9514f09a063bd9ba95afb0b56bcc7f40cccf428e906b79ee5c2
Contents?: true
Size: 565 Bytes
Versions: 36
Compression:
Stored size: 565 Bytes
Contents
"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"];
Version data entries
36 entries across 35 versions & 9 rubygems