UNPKG

@alihbuzaid/ember-ui

Version:

Fleetbase UI provides all the interface components, helpers, services and utilities for building a Fleetbase extension into the Console.

11 lines (9 loc) 278 B
import { helper } from '@ember/component/helper'; import { get } from '@ember/object'; export default helper(function safeHas([obj, path]) { if (obj && !obj.isDestroyed && !obj.isDestroying) { return get(obj, path); } else { return undefined; } });