ccc-tnt-psd2ui/npm-packages/mac-v2.4.x/yallist/iterator.js

9 lines
207 B
JavaScript
Raw Permalink Normal View History

2023-07-24 03:13:08 +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
}
}
}