CoolFace
Apppublic

Ejdjdososs/fable-ai

sourceHugging Facemitupdated 3mo agoView on Hugging Face
0likes
iterator.js9 linesDownload Raw Back to yallist
1'use strict'2module.exports = function (Yallist) {3  Yallist.prototype[Symbol.iterator] = function* () {4    for (let walker = this.head; walker; walker = walker.next) {5      yield walker.value6    }7  }8}9