mirror of
https://github.com/CamHenlin/MessagesForMacintosh.git
synced 2024-11-29 08:49:40 +00:00
16 lines
417 B
JavaScript
16 lines
417 B
JavaScript
"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;
|