UNPKG

ramda-extension

Version:

Helpful functions built on top of the mighty Ramda

18 lines (17 loc) 324 B
import { is } from 'ramda'; /** * Returns true if argument is type of String. * * @func * @category Type * * @example * * R_.isString({}) // false * R_.isString([]) // false * R_.isString('') // true * * @sig a -> Boolean */ var isString = /*#__PURE__*/is(String); export default isString;