morbo-cli
Version:
… All tech debt is vermin in the eyes of Morbo!
14 lines (13 loc) • 510 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var inline = '\\/\\/';
var block = '\\*';
var jsx = '\\{#';
var jsx2 = '\\{/\\/\\*';
var hash = '#';
var html = '<!--';
var commentPrefixesRegex = "(" + inline + "|" + html + "|" + jsx + "|" + jsx2 + "|" + block + "|" + hash + ")";
var commentRegex = function (value) {
return new RegExp("(?:^|[^:])" + commentPrefixesRegex + "\\s*@?" + value + "\\b\\s*(?:\\(([^:]*)\\))*\\s*:?\\s*(.*)", 'i');
};
exports.default = commentRegex;