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
+10 -20
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;
}
}
+14 -10
View File
@@ -1,25 +1,29 @@
'use strict';
exports.__esModule = true;
Object.defineProperty(exports, "__esModule", {
value: true
});
function CommentRemover(options) {
this.options = options;
}
CommentRemover.prototype.canRemove = function (comment) {
var remove = this.options.remove;
const remove = this.options.remove;
if (remove) {
return remove(comment);
} else {
var isImportant = comment.indexOf('!') === 0;
const isImportant = comment.indexOf('!') === 0;
if (!isImportant) {
return true;
} else if (isImportant) {
if (this.options.removeAll || this._hasFirst) {
return true;
} else if (this.options.removeAllButFirst && !this._hasFirst) {
this._hasFirst = true;
return false;
}
}
if (this.options.removeAll || this._hasFirst) {
return true;
} else if (this.options.removeAllButFirst && !this._hasFirst) {
this._hasFirst = true;
return false;
}
}
};