swc/bundler/tests/.cache/deno/84ae3e95fa054e68fb3c5015cda3abb44b3f59f1.ts
강동윤 bbaf619f63
fix(bundler): Fix bugs (#1437)
swc_bundler:
 - [x] Fix wrapped esms. (denoland/deno#9307)
 - [x] Make test secure.
2021-03-02 17:33:03 +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;