UNPKG

fpt-akainsights-react-native

Version:

React Native Plugin for the akaInsights Javascript SDK

12 lines (11 loc) 301 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isFloat = exports.isInt = void 0; function isInt(n) { return Number(n) === n && n % 1 === 0; } exports.isInt = isInt; function isFloat(n) { return Number(n) === n && n % 1 !== 0; } exports.isFloat = isFloat;