mirror of
https://github.com/bnmgh1/NodeSandbox.git
synced 2025-04-16 16:07:10 +08:00
9 lines
207 B
JavaScript
9 lines
207 B
JavaScript
'use strict'
|
|
module.exports = function (Yallist) {
|
|
Yallist.prototype[Symbol.iterator] = function* () {
|
|
for (let walker = this.head; walker; walker = walker.next) {
|
|
yield walker.value
|
|
}
|
|
}
|
|
}
|