nav tabs on admin dashboard

This commit is contained in:
2019-03-07 00:20:34 -06:00
parent f73d6ae228
commit e4f473f376
11661 changed files with 216240 additions and 1544253 deletions

View File

@@ -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;
}
}