UNPKG

417 BJavaScriptView Raw
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.default = void 0;
7
8/* eslint-disable no-redeclare */
9// $FlowFixMe[name-already-bound] workaround for: https://github.com/facebook/flow/issues/4441
10var isFinitePolyfill = Number.isFinite || function (value) {
11 return typeof value === 'number' && isFinite(value);
12};
13
14var _default = isFinitePolyfill;
15exports.default = _default;