ramda-extension
Version:
Helpful functions built on top of the mighty Ramda
26 lines (23 loc) • 461 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _ramda = require("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 = (0, _ramda.is)(String);
var _default = isString;
exports.default = _default;