UNPKG

react-native-json-tree

Version:

React Native JSON viewing component, based on react-json-tree

12 lines (11 loc) 265 B
export default function objType(obj) { if ( obj !== null && typeof obj === 'object' && !Array.isArray(obj) && typeof obj[Symbol.iterator] === 'function' ) { return 'Iterable'; } return Object.prototype.toString.call(obj).slice(8, -1); }