{"version":3,"file":"static/npm.is-plain-object.928216d2.js","mappings":";uHAWA,SAASA,EAASC,GAChB,MAA6C,oBAAtCC,OAAOC,UAAUC,SAASC,KAAKJ,EACxC,CAXAC,OAAOI,eAAeC,EAAS,aAA/BL,CAA+CM,OAAO,IAmCtDD,EAAQE,cAtBR,SAAuBR,GACrB,IAAIS,EAAKC,EAET,OAAoB,IAAhBX,EAASC,UAIAW,KADbF,EAAOT,EAAEY,eAKc,IAAnBb,EADJW,EAAOD,EAAKP,aAIiC,IAAzCQ,EAAKG,eAAe,iBAM1B","sources":["../node_modules/is-plain-object/dist/is-plain-object.js"],"sourcesContent":["'use strict';\n\nObject.defineProperty(exports, '__esModule', { value: true });\n\n/*!\n * is-plain-object <https://github.com/jonschlinkert/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\nexports.isPlainObject = isPlainObject;\n"],"names":["isObject","o","Object","prototype","toString","call","defineProperty","exports","value","isPlainObject","ctor","prot","undefined","constructor","hasOwnProperty"],"sourceRoot":""}