claude-code / mods /diff /hooks /array-of /array-of.ts
SaylorTwift's picture
SaylorTwift HF Staff
Add files using upload-large-folder tool
bdbd3b2 verified
Raw
History Blame Contribute Delete
296 Bytes
/**
* A value a tool stored as the array it is, or an empty one when it is
* anything else.
*
* @param value a field of a tool's input or result
* @returns the array's items, unknown each
*/
export const arrayOf = (value: unknown): readonly unknown[] =>
Array.isArray(value) ? value : []