Skip to main content
Module

x/ramda/internal/_isObject.js

:ram: Practical functional Javascript
Very Popular
Go to Latest
File
export default function _isObject(x) { return Object.prototype.toString.call(x) === '[object Object]';}