All Downloads are FREE. Search and download functionalities are using the official Maven repository.

node_modules.yallist.iterator.js Maven / Gradle / Ivy

The newest version!
var Yallist = require('./yallist.js')

Yallist.prototype[Symbol.iterator] = function* () {
  for (let walker = this.head; walker; walker = walker.next) {
    yield walker.value
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy