☰std/array/is Checks if the given argument is an array. Type signature (value?: unknown) => boolean Examples is([1, 2, 3]); // ⇒ true Try in REPL is({ a: 5 }); // ⇒ false Try in REPL Questions How to check if a value is an array? TypeScript source • JavaScript source