"use strict";Object.defineProperty(exports,"__esModule",{value:true});exports.default=isObjectLike;function_typeof(obj){if(typeofSymbol==="function"&&typeofSymbol.iterator==="symbol"){_typeof=function_typeof(obj){returntypeofobj;};}else{_typeof=function_typeof(obj){returnobj&&typeofSymbol==="function"&&obj.constructor===Symbol&&obj!==Symbol.prototype?"symbol":typeofobj;};}return_typeof(obj);}/** * Return true if `value` is object-like. A value is object-like if it's not * `null` and has a `typeof` result of "object". */functionisObjectLike(value){return_typeof(value)=='object'&&value!==null;}