External Libraries: Update the regenerator-runtime library.

This updates the `regenerator-runtime` library to version `0.14.0`.

Props rajinsharwar, oglekler.
Fixes #59078.
Built from https://develop.svn.wordpress.org/trunk@56626


git-svn-id: http://core.svn.wordpress.org/trunk@56138 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
desrosj 2023-09-19 19:30:24 +00:00
parent 0475a61f8a
commit da0c2396bb
3 changed files with 4 additions and 5 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;

File diff suppressed because one or more lines are too long

View File

@ -16,7 +16,7 @@
*
* @global string $wp_version
*/
$wp_version = '6.4-alpha-56623';
$wp_version = '6.4-alpha-56626';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.