swc/crates/swc_bundler/tests/.cache/deno/84ae3e95fa054e68fb3c5015cda3abb44b3f59f1.ts
2021-11-09 20:42:49 +09:00

10 lines
347 B
TypeScript

// Loaded from https://deno.land/x/graphql_deno@v15.0.0/lib/polyfills/isFinite.js
/* eslint-disable no-redeclare */
// $FlowFixMe workaround for: https://github.com/facebook/flow/issues/4441
const isFinitePolyfill = Number.isFinite || function (value) {
return typeof value === 'number' && isFinite(value);
};
export default isFinitePolyfill;