Files
jason 97be2d2908
Build and Push Docker Image / build (push) Successful in 18s
auth modal
2026-05-27 09:07:23 -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
}
}
}