UNPKG

node-red-contrib-tak-registration

Version:

A Node-RED node to register to TAK and to help wrap files as datapackages to send to TAK

13 lines (9 loc) 262 B
'use strict'; var $isNaN = require('./isNaN'); /** @type {import('./isFinite')} */ module.exports = function isFinite(x) { return (typeof x === 'number' || typeof x === 'bigint') && !$isNaN(x) && x !== Infinity && x !== -Infinity; };