ikhsanmlnn's picture
first commit
2c38fa9
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
}
}
}