mirror of
https://github.com/glitch-soc/mastodon.git
synced 2025-01-21 15:13:01 -05:00
[Glitch] Remove isNaN polyfill
Port b46125224c26bc0144659b4319ea416b01289961 to glitch-soc Signed-off-by: Claire <claire.github-309c@sitedethib.com>
This commit is contained in:
parent
14b0311029
commit
00c839b9a9
app/javascript/flavours/glitch
@ -4,7 +4,6 @@ import 'es6-symbol/implement';
|
||||
import includes from 'array-includes';
|
||||
import assign from 'object-assign';
|
||||
import values from 'object.values';
|
||||
import isNaN from 'is-nan';
|
||||
import { decode as decodeBase64 } from './utils/base64';
|
||||
import promiseFinally from 'promise.prototype.finally';
|
||||
|
||||
@ -20,10 +19,6 @@ if (!Object.values) {
|
||||
values.shim();
|
||||
}
|
||||
|
||||
if (!Number.isNaN) {
|
||||
Number.isNaN = isNaN;
|
||||
}
|
||||
|
||||
promiseFinally.shim();
|
||||
|
||||
if (!HTMLCanvasElement.prototype.toBlob) {
|
||||
|
@ -15,7 +15,6 @@ function loadPolyfills() {
|
||||
Array.prototype.includes &&
|
||||
HTMLCanvasElement.prototype.toBlob &&
|
||||
window.Intl &&
|
||||
Number.isNaN &&
|
||||
Object.assign &&
|
||||
Object.values &&
|
||||
window.Symbol &&
|
||||
|
Loading…
x
Reference in New Issue
Block a user