flow like the river
This commit is contained in:
commit
013fe673f3
42435 changed files with 5764238 additions and 0 deletions
15
VISUALIZACION/node_modules/graphql/polyfills/isFinite.js
generated
vendored
Executable file
15
VISUALIZACION/node_modules/graphql/polyfills/isFinite.js
generated
vendored
Executable file
|
|
@ -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;
|
||||
Loading…
Add table
Add a link
Reference in a new issue