{"map":"{\"version\":3,\"file\":\"index.js\",\"sourceRoot\":\"\",\"sources\":[\"../../../src/objectType/index.ts\"],\"names\":[],\"mappings\":\"AAAA,YAAY,CAAA;AAEZ,IAAM,aAAa,GAAG,UAAC,MAAc;IACnC,IAAM,SAAS,GAAG,MAAM,CAAC,SAAS,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,CAAC,CAAA;IACxD,IAAM,UAAU,GAAG,CAAC,uBAAuB,CAAC,IAAI,CAAC,SAAS,CAAC,IAAI,EAAE,CAAC,CAAA;IAElE,QAAQ,UAAU,CAAC,CAAC,CAAC,EAAE;QACrB,KAAK,QAAQ;YACX,OAAO,UAAU,CAAC,CAAC,CAAC,CAAA;QACtB,KAAK,QAAQ;YACX,OAAO,QAAQ,CAAA;KAClB;IAED,OAAO,QAAQ,CAAA;AACjB,CAAC,CAAA;AAED,OAAO,EACL,aAAa,EACd,CAAA\",\"sourcesContent\":[\"'use strict'\\n\\nconst getObjectType = (object: object): string => {\\n  const objectStr = Object.prototype.toString.call(object)\\n  const objectType = (/\\\\s*\\\\[(\\\\w+) (\\\\w+)\\\\]\\\\s*/.exec(objectStr) || [])\\n\\n  switch (objectType[1]) {\\n    case 'object':\\n      return objectType[2]\\n    case 'native':\\n      return 'native'\\n  }\\n\\n  return 'unknow'\\n}\\n\\nexport {\\n  getObjectType\\n}\\n\"]}","code":"'use strict';\r\nvar getObjectType = function (object) {\r\n    var objectStr = Object.prototype.toString.call(object);\r\n    var objectType = (/\\s*\\[(\\w+) (\\w+)\\]\\s*/.exec(objectStr) || []);\r\n    switch (objectType[1]) {\r\n        case 'object':\r\n            return objectType[2];\r\n        case 'native':\r\n            return 'native';\r\n    }\r\n    return 'unknow';\r\n};\r\nexport { getObjectType };\r\n//# sourceMappingURL=index.js.map"}
