UNPKG

@hello.nrfcloud.com/proto-map

Version:

Documents the communication protocol between devices, the hello.nrfcloud.com/map backend and web application

9 lines (7 loc) 250 B
import { isNumber } from './isNumber.js' export const isUnixTimeInSeconds = (value: unknown): value is number => { if (!isNumber(value)) return false if (value < 1700000000) return false if (value * 1000 > Date.now()) return false return true }