UNPKG

hd-utils

Version:

A handy utils for modern JS developers

6 lines (5 loc) 246 B
/** * @description It returns true if the value is an array of strings, otherwise it returns false * @returns A function that takes a value and returns a boolean. */ export default function isArrayOfStrings(value: unknown): value is string[];