github-pages-deploy-action/node_modules/yallist/iterator.js
2019-11-19 07:48:29 -05: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
}
}
}