ramda-extension
Version:
Helpful functions built on top of the mighty Ramda
25 lines (21 loc) • 418 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _ramda = require("ramda");
/**
* Returns true if argument is type of Array.
*
* @func
* @category Type
*
* @example
*
* R_.isArray([]) // true
* R_.isArray('') // false
* @sig a -> Boolean
*/
var isArray = (0, _ramda.is)(Array);
var _default = isArray;
exports.default = _default;