UNPKG

@nozbe/watermelondb

Version:

Build powerful React Native and React web apps that scale from hundreds to tens of thousands of records and remain fast

6 lines (4 loc) 168 B
// @flow export default function isObj<T>(maybeObject: T): boolean { return maybeObject !== null && typeof maybeObject === 'object' && !Array.isArray(maybeObject) }