UNPKG

telefunc

Version:

Remote functions. Instead of API.

5 lines (4 loc) 144 B
// Same as Array.isArray() but typesafe: asserts unknown[] instead of any[] export function isArray(value) { return Array.isArray(value); }