It appears you have a well-structured Git repository with various files, including SVG icons and HTML documents. Here's a brief overview:
This commit is contained in:
31
backend/node_modules/postcss-discard-comments/src/lib/commentParser.js
generated
vendored
Normal file
31
backend/node_modules/postcss-discard-comments/src/lib/commentParser.js
generated
vendored
Normal file
@@ -0,0 +1,31 @@
|
||||
'use strict';
|
||||
|
||||
/**
|
||||
* @param {string} input
|
||||
* @return {[number, number, number][]}
|
||||
*/
|
||||
module.exports = function commentParser(input) {
|
||||
/** @type [number, number, number][] */
|
||||
const tokens = [];
|
||||
const length = input.length;
|
||||
let pos = 0;
|
||||
let next;
|
||||
|
||||
while (pos < length) {
|
||||
next = input.indexOf('/*', pos);
|
||||
|
||||
if (~next) {
|
||||
tokens.push([0, pos, next]);
|
||||
pos = next;
|
||||
|
||||
next = input.indexOf('*/', pos + 2);
|
||||
tokens.push([1, pos + 2, next]);
|
||||
pos = next + 2;
|
||||
} else {
|
||||
tokens.push([0, pos, length]);
|
||||
pos = length;
|
||||
}
|
||||
}
|
||||
|
||||
return tokens;
|
||||
};
|
||||
32
backend/node_modules/postcss-discard-comments/src/lib/commentRemover.js
generated
vendored
Normal file
32
backend/node_modules/postcss-discard-comments/src/lib/commentRemover.js
generated
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
'use strict';
|
||||
|
||||
/** @param {import('../index.js').Options} options */
|
||||
function CommentRemover(options) {
|
||||
this.options = options;
|
||||
}
|
||||
/**
|
||||
* @param {string} comment
|
||||
* @return {boolean | undefined}
|
||||
*/
|
||||
CommentRemover.prototype.canRemove = function (comment) {
|
||||
const remove = this.options.remove;
|
||||
|
||||
if (remove) {
|
||||
return remove(comment);
|
||||
} else {
|
||||
const isImportant = comment.indexOf('!') === 0;
|
||||
|
||||
if (!isImportant) {
|
||||
return true;
|
||||
}
|
||||
|
||||
if (this.options.removeAll || this._hasFirst) {
|
||||
return true;
|
||||
} else if (this.options.removeAllButFirst && !this._hasFirst) {
|
||||
this._hasFirst = true;
|
||||
return false;
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
module.exports = CommentRemover;
|
||||
Reference in New Issue
Block a user