{"version":3,"file":"is-plain-object-BedWOaN-.js","sources":["../../node_modules/is-plain-object/dist/is-plain-object.mjs"],"sourcesContent":["/*!\n * is-plain-object \n *\n * Copyright (c) 2014-2017, Jon Schlinkert.\n * Released under the MIT License.\n */\n\nfunction isObject(o) {\n return Object.prototype.toString.call(o) === '[object Object]';\n}\n\nfunction isPlainObject(o) {\n var ctor,prot;\n\n if (isObject(o) === false) return false;\n\n // If has modified constructor\n ctor = o.constructor;\n if (ctor === undefined) return true;\n\n // If has modified prototype\n prot = ctor.prototype;\n if (isObject(prot) === false) return false;\n\n // If constructor does not have an Object-specific method\n if (prot.hasOwnProperty('isPrototypeOf') === false) {\n return false;\n }\n\n // Most likely a plain Object\n return true;\n}\n\nexport { isPlainObject };\n"],"names":["isObject","o","Object","prototype","toString","call","isPlainObject","ctor","prot","constructor","hasOwnProperty"],"mappings":";;;;;;AAOA,SAASA,EAASC,GAChB,MAA6C,oBAAtCC,OAAOC,UAAUC,SAASC,KAAKJ,EACxC,CAEA,SAASK,EAAcL,GACrB,IAAIM,EAAKC,EAEL,OAAgB,IAAhBR,EAASC,UAIA,KADbM,EAAON,EAAEQ,eAKc,IAAnBT,EADJQ,EAAOD,EAAKJ,aAIiC,IAAzCK,EAAKE,eAAe,iBAM1B","x_google_ignoreList":[0]}