UNPKG

@nullvoxpopuli/ember-composable-helpers

Version:
6 lines (4 loc) 156 B
import { typeOf } from '@ember/utils'; export default function isObject(val: unknown) { return typeOf(val) === 'object' || typeOf(val) === 'instance'; }