Skip to content

Commit 6afdda9

Browse files
committed
chore: ajv-formats@3.0.1
1 parent ef87ec6 commit 6afdda9

File tree

11 files changed

+973
-5
lines changed

11 files changed

+973
-5
lines changed

node_modules/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -209,11 +209,13 @@
209209
!/tar/node_modules/fs-minipass/node_modules/
210210
/tar/node_modules/fs-minipass/node_modules/*
211211
!/tar/node_modules/fs-minipass/node_modules/minipass
212+
!/tar/node_modules/fs-minipass/node_modules/yallist
212213
!/tar/node_modules/minipass
213214
!/tar/node_modules/minizlib
214215
!/tar/node_modules/minizlib/node_modules/
215216
/tar/node_modules/minizlib/node_modules/*
216217
!/tar/node_modules/minizlib/node_modules/minipass
218+
!/tar/node_modules/minizlib/node_modules/yallist
217219
!/tar/node_modules/mkdirp
218220
!/text-table
219221
!/tiny-relative-date
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
The ISC License
2+
3+
Copyright (c) Isaac Z. Schlueter and Contributors
4+
5+
Permission to use, copy, modify, and/or distribute this software for any
6+
purpose with or without fee is hereby granted, provided that the above
7+
copyright notice and this permission notice appear in all copies.
8+
9+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
15+
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
'use strict'
2+
module.exports = function (Yallist) {
3+
Yallist.prototype[Symbol.iterator] = function* () {
4+
for (let walker = this.head; walker; walker = walker.next) {
5+
yield walker.value
6+
}
7+
}
8+
}
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"name": "yallist",
3+
"version": "4.0.0",
4+
"description": "Yet Another Linked List",
5+
"main": "yallist.js",
6+
"directories": {
7+
"test": "test"
8+
},
9+
"files": [
10+
"yallist.js",
11+
"iterator.js"
12+
],
13+
"dependencies": {},
14+
"devDependencies": {
15+
"tap": "^12.1.0"
16+
},
17+
"scripts": {
18+
"test": "tap test/*.js --100",
19+
"preversion": "npm test",
20+
"postversion": "npm publish",
21+
"postpublish": "git push origin --all; git push origin --tags"
22+
},
23+
"repository": {
24+
"type": "git",
25+
"url": "git+https://github.com/isaacs/yallist.git"
26+
},
27+
"author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
28+
"license": "ISC"
29+
}

0 commit comments

Comments
 (0)