Files
Bourse/bourse_app/node_modules/yallist/iterator.js
1288 e6189144d7 1
2026-06-08 21:26:47 +08:00

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