Merge pull request #9520 from Snuffleupagus/fix-includes-polyfills
Attempt to fix the `Array.prototype.includes` and `String.prototype.includes` polyfills (issue 9514, 9516)
This commit is contained in:
commit
401f3a9d97
@ -12,7 +12,7 @@
|
|||||||
* See the License for the specific language governing permissions and
|
* See the License for the specific language governing permissions and
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
/* eslint-disable no-extend-native, mozilla/use-includes-instead-of-indexOf */
|
/* eslint-disable mozilla/use-includes-instead-of-indexOf */
|
||||||
/* globals PDFJS */
|
/* globals PDFJS */
|
||||||
|
|
||||||
// Skip compatibility checks for the extensions and if we already ran
|
// Skip compatibility checks for the extensions and if we already ran
|
||||||
@ -131,7 +131,7 @@ PDFJS.compatibilityChecked = true;
|
|||||||
if (String.prototype.includes) {
|
if (String.prototype.includes) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
String.prototype.includes = require('core-js/fn/string/includes');
|
require('core-js/fn/string/includes');
|
||||||
})();
|
})();
|
||||||
|
|
||||||
// Provides support for Array.prototype.includes in legacy browsers.
|
// Provides support for Array.prototype.includes in legacy browsers.
|
||||||
@ -140,7 +140,7 @@ PDFJS.compatibilityChecked = true;
|
|||||||
if (Array.prototype.includes) {
|
if (Array.prototype.includes) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
Array.prototype.includes = require('core-js/fn/array/includes');
|
require('core-js/fn/array/includes');
|
||||||
})();
|
})();
|
||||||
|
|
||||||
// Provides support for Math.log2 in legacy browsers.
|
// Provides support for Math.log2 in legacy browsers.
|
||||||
|
Loading…
Reference in New Issue
Block a user