Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/yallist/iterator.js')
-rw-r--r--node_modules/yallist/iterator.js11
1 files changed, 6 insertions, 5 deletions
diff --git a/node_modules/yallist/iterator.js b/node_modules/yallist/iterator.js
index 4a15bf22c..d41c97a19 100644
--- a/node_modules/yallist/iterator.js
+++ b/node_modules/yallist/iterator.js
@@ -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
+ }
}
}