1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-05 19:42:38 +02:00

npm update

This commit is contained in:
Daniel Neto 2023-08-12 10:32:47 -03:00
parent 0cdd3e9fee
commit 4696ba952f
1437 changed files with 32727 additions and 1248226 deletions

View file

@ -487,7 +487,7 @@ var runtime = (function (exports) {
};
function values(iterable) {
if (iterable) {
if (iterable || iterable === "") {
var iteratorMethod = iterable[iteratorSymbol];
if (iteratorMethod) {
return iteratorMethod.call(iterable);
@ -517,8 +517,7 @@ var runtime = (function (exports) {
}
}
// Return an iterator with no values.
return { next: doneResult };
throw new TypeError(typeof iterable + " is not iterable");
}
exports.values = values;