mirror of
https://github.com/musix-org/musix-oss
synced 2024-11-10 08:10:18 +00: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
|
|
}
|
|
}
|
|
}
|