1
0
mirror of https://github.com/musix-org/musix-oss synced 2025-07-05 15:00:50 +00:00
Files
musix-oss/node_modules/yallist/iterator.js
MatteZ02 30022c7634 Modules
2020-03-03 22:30:50 +02: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
}
}
}