[Glitch] Remove isNaN polyfill

Port 169b9c9b13 to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
lolsob-rspec
Nick Schonning 2023-03-23 04:47:13 -04:00 committed by Claire
parent 6a5a699fbb
commit 57e9fc7e5a
2 changed files with 0 additions and 6 deletions

View File

@ -4,7 +4,6 @@ import 'es6-symbol/implement';
import includes from 'array-includes'; import includes from 'array-includes';
import assign from 'object-assign'; import assign from 'object-assign';
import values from 'object.values'; import values from 'object.values';
import isNaN from 'is-nan';
import { decode as decodeBase64 } from './utils/base64'; import { decode as decodeBase64 } from './utils/base64';
import promiseFinally from 'promise.prototype.finally'; import promiseFinally from 'promise.prototype.finally';
@ -20,10 +19,6 @@ if (!Object.values) {
values.shim(); values.shim();
} }
if (!Number.isNaN) {
Number.isNaN = isNaN;
}
promiseFinally.shim(); promiseFinally.shim();
if (!HTMLCanvasElement.prototype.toBlob) { if (!HTMLCanvasElement.prototype.toBlob) {

View File

@ -15,7 +15,6 @@ function loadPolyfills() {
Array.prototype.includes && Array.prototype.includes &&
HTMLCanvasElement.prototype.toBlob && HTMLCanvasElement.prototype.toBlob &&
window.Intl && window.Intl &&
Number.isNaN &&
Object.assign && Object.assign &&
Object.values && Object.values &&
window.Symbol && window.Symbol &&