Firebase Update

This commit is contained in:
Lukas Nowy
2018-12-22 23:30:39 +01:00
parent befb44764d
commit acffe619b3
11523 changed files with 1614327 additions and 930246 deletions

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

View File

@ -1,27 +1,27 @@
{
"_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",
"_where": "C:\\Users\\Georg\\GitHub\\SmartShopper\\express-server\\node_modules\\lru-cache",
"_resolved": "https://registry.npmjs.org/yallist/-/yallist-3.0.3.tgz",
"_shasum": "b4b049e314be545e3ce802236d6cd22cd91c3de9",
"_spec": "yallist@^3.0.2",
"_where": "D:\\Desktop\\Git\\Firebase\\SmartShopperFirebase\\node_modules\\lru-cache",
"author": {
"name": "Isaac Z. Schlueter",
"email": "i@izs.me",
@ -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"
}

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) {}