idnameraj's picture
Upload 3150 files
c212805 verified
Raw
History Blame Contribute Delete
207 Bytes
'use strict'
module.exports = function (Yallist) {
Yallist.prototype[Symbol.iterator] = function* () {
for (let walker = this.head; walker; walker = walker.next) {
yield walker.value
}
}
}