CoolFace
Apppublic

canal007/voice-bot

sourceHugging Faceupdated 2y 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