summaryrefslogtreecommitdiff
path: root/includes/external/school/node_modules/graphql/polyfills/isFinite.js
diff options
context:
space:
mode:
Diffstat (limited to 'includes/external/school/node_modules/graphql/polyfills/isFinite.js')
-rw-r--r--includes/external/school/node_modules/graphql/polyfills/isFinite.js15
1 files changed, 0 insertions, 15 deletions
diff --git a/includes/external/school/node_modules/graphql/polyfills/isFinite.js b/includes/external/school/node_modules/graphql/polyfills/isFinite.js
deleted file mode 100644
index 9c0e559..0000000
--- a/includes/external/school/node_modules/graphql/polyfills/isFinite.js
+++ /dev/null
@@ -1,15 +0,0 @@
-"use strict";
-
-Object.defineProperty(exports, "__esModule", {
- value: true
-});
-exports.default = void 0;
-
-/* eslint-disable no-redeclare */
-// $FlowFixMe[name-already-bound] workaround for: https://github.com/facebook/flow/issues/4441
-var isFinitePolyfill = Number.isFinite || function (value) {
- return typeof value === 'number' && isFinite(value);
-};
-
-var _default = isFinitePolyfill;
-exports.default = _default;