File size: 296 Bytes
bdbd3b2
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
/**
 * 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 : []