Files
tenderpilot/node_modules/yallist/iterator.js
2026-02-14 07:43:48 +00:00

9 lines
207 B
JavaScript
Executable File

'use strict'
module.exports = function (Yallist) {
Yallist.prototype[Symbol.iterator] = function* () {
for (let walker = this.head; walker; walker = walker.next) {
yield walker.value
}
}
}