UNPKG

pure-fun

Version:

A collection of pure functions/helpers with 0 dependencies

6 lines (5 loc) 125 B
/** * Check if the given input is a string */ declare const isString: (str: any) => boolean; export default isString;