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

11
node_modules/yallist/iterator.js generated vendored
View File

@@ -1,7 +1,8 @@
var Yallist = require('./yallist.js')
Yallist.prototype[Symbol.iterator] = function* () {
for (let walker = this.head; walker; walker = walker.next) {
yield walker.value
'use strict'
module.exports = function (Yallist) {
Yallist.prototype[Symbol.iterator] = function* () {
for (let walker = this.head; walker; walker = walker.next) {
yield walker.value
}
}
}

22
node_modules/yallist/package.json generated vendored
View File

@@ -1,26 +1,26 @@
{
"_from": "yallist@^2.1.2",
"_id": "yallist@2.1.2",
"_from": "yallist@^3.0.2",
"_id": "yallist@3.0.3",
"_inBundle": false,
"_integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=",
"_integrity": "sha512-S+Zk8DEWE6oKpV+vI3qWkaK+jSbIK86pCwe2IF/xwIpQ8jEuxpw9NyaGjmp9+BoJv5FV2piqCDcoCtStppiq2A==",
"_location": "/yallist",
"_phantomChildren": {},
"_requested": {
"type": "range",
"registry": true,
"raw": "yallist@^2.1.2",
"raw": "yallist@^3.0.2",
"name": "yallist",
"escapedName": "yallist",
"rawSpec": "^2.1.2",
"rawSpec": "^3.0.2",
"saveSpec": null,
"fetchSpec": "^2.1.2"
"fetchSpec": "^3.0.2"
},
"_requiredBy": [
"/lru-cache"
],
"_resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz",
"_shasum": "1c11f9218f076089a47dd512f93c6699a6a81d52",
"_spec": "yallist@^2.1.2",
"_resolved": "https://registry.npmjs.org/yallist/-/yallist-3.0.3.tgz",
"_shasum": "b4b049e314be545e3ce802236d6cd22cd91c3de9",
"_spec": "yallist@^3.0.2",
"_where": "C:\\xampp\\htdocs\\w4rpservices\\node_modules\\lru-cache",
"author": {
"name": "Isaac Z. Schlueter",
@@ -35,7 +35,7 @@
"deprecated": false,
"description": "Yet Another Linked List",
"devDependencies": {
"tap": "^10.3.0"
"tap": "^12.1.0"
},
"directories": {
"test": "test"
@@ -58,5 +58,5 @@
"preversion": "npm test",
"test": "tap test/*.js --100"
},
"version": "2.1.2"
"version": "3.0.3"
}

6
node_modules/yallist/yallist.js generated vendored
View File

@@ -1,3 +1,4 @@
'use strict'
module.exports = Yallist
Yallist.Node = Node
@@ -368,3 +369,8 @@ function Node (value, prev, next, list) {
this.next = null
}
}
try {
// add if support for Symbol.iterator is present
require('./iterator.js')(Yallist)
} catch (er) {}