UNPKG

ramda-extension

Version:

Helpful functions built on top of the mighty Ramda

26 lines (22 loc) 458 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; var _ramda = require("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 = (0, _ramda.is)(Object); var _default = isObject; exports.default = _default;