Sha256: 96180e414d02e2441f607116f509de9703402e3ea2e2558bdcffdf5541c5ce0f
Contents?: true
Size: 524 Bytes
Versions: 88
Compression:
Stored size: 524 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
88 entries across 50 versions & 10 rubygems