UNPKG

@alihbuzaid/ember-ui

Version:

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

10 lines (7 loc) 203 B
import { helper } from '@ember/component/helper'; export default helper(function getDotProp([object, key]) { if (object[key] === undefined) { return null; } return object[key]; });