FLUJOS/VISUALIZACION/node_modules/htmlnano/lib/helpers.js
2025-11-07 00:06:12 +01:00

14 lines
No EOL
357 B
JavaScript
Executable file

'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.isComment = isComment;
exports.isConditionalComment = isConditionalComment;
function isComment(content) {
return (content || '').trim().search('<!--') === 0;
}
function isConditionalComment(content) {
return (content || '').trim().search(/<!--\[if/) === 0;
}