nav tabs on admin dashboard
This commit is contained in:
30
node_modules/postcss-discard-comments/dist/lib/commentParser.js
generated
vendored
30
node_modules/postcss-discard-comments/dist/lib/commentParser.js
generated
vendored
@@ -1,37 +1,27 @@
|
||||
'use strict';
|
||||
|
||||
exports.__esModule = true;
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = commentParser;
|
||||
function commentParser(input) {
|
||||
var tokens = [];
|
||||
var length = input.length;
|
||||
var pos = 0;
|
||||
var next = undefined;
|
||||
const tokens = [];
|
||||
const length = input.length;
|
||||
let pos = 0;
|
||||
let next;
|
||||
|
||||
while (pos < length) {
|
||||
next = input.indexOf('/*', pos);
|
||||
|
||||
if (~next) {
|
||||
tokens.push({
|
||||
type: 'other',
|
||||
value: input.slice(pos, next)
|
||||
});
|
||||
tokens.push([0, pos, next]);
|
||||
pos = next;
|
||||
|
||||
next = input.indexOf('*/', pos + 2);
|
||||
if (! ~next) {
|
||||
throw new Error('postcss-discard-comments: Unclosed */');
|
||||
}
|
||||
tokens.push({
|
||||
type: 'comment',
|
||||
value: input.slice(pos + 2, next)
|
||||
});
|
||||
tokens.push([1, pos + 2, next]);
|
||||
pos = next + 2;
|
||||
} else {
|
||||
tokens.push({
|
||||
type: 'other',
|
||||
value: input.slice(pos)
|
||||
});
|
||||
tokens.push([0, pos, length]);
|
||||
pos = length;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user