Files
Selenium_test_website/node_modules/yallist/iterator.js
Tiệp Sunflower aa9c76c82f selenium
2023-03-06 14:23:39 +07: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
}
}
}