loulijun2021
2023-10-31 4a0e13df7532a226cd1f951b3ace001969d2ee88
1
2
3
4
5
6
7
8
'use strict'
module.exports = function (Yallist) {
  Yallist.prototype[Symbol.iterator] = function* () {
    for (let walker = this.head; walker; walker = walker.next) {
      yield walker.value
    }
  }
}