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, 15 insertions, 0 deletions
diff --git a/includes/external/school/node_modules/graphql/polyfills/isFinite.js b/includes/external/school/node_modules/graphql/polyfills/isFinite.js
new file mode 100644
index 0000000..9c0e559
--- /dev/null
+++ b/includes/external/school/node_modules/graphql/polyfills/isFinite.js
@@ -0,0 +1,15 @@
+"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;