UNPKG

celerichain-ember-cor

Version:

Provides all the core services, decorators and utilities for building a Fleetbase extension for the Console.

7 lines (5 loc) 197 B
import { get } from '@ember/object'; export default function getWithDefault(obj, key, defaultValue) { let value = get(obj, key); return value === undefined ? defaultValue : value; }