ramda-extension
Version:
Helpful functions built on top of the mighty Ramda
18 lines (16 loc) • 321 B
JavaScript
import { is } from 'ramda';
/**
* Returns true if argument is type of Object.
*
* @func
* @category Type
*
* @example
*
* R_.isObject({}) // true
* R_.isObject([]) // true
* R_.isObject('') // false
* @sig a -> Boolean
*/
var isObject = /*#__PURE__*/is(Object);
export default isObject;