wishthis/node_modules/yallist/iterator.js

9 lines
207 B
JavaScript
Raw Normal View History

2023-08-17 09:47:40 +00:00
'use strict'
module.exports = function (Yallist) {
Yallist.prototype[Symbol.iterator] = function* () {
for (let walker = this.head; walker; walker = walker.next) {
yield walker.value
}
2022-01-21 08:28:41 +00:00
}
}