UNPKG

@hello.nrfcloud.com/proto-map

Version:

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

6 lines (5 loc) 151 B
export const hasName = (m: unknown): m is { n: string } => { if (m === null) return false if (typeof m !== 'object') return false return 'n' in m }