UNPKG

ember-cp-validations

Version:
11 lines (8 loc) 214 B
import { get } from '@ember/object'; export default function getWithDefault(obj, key, defaultValue) { let result = get(obj, key); if (result === undefined) { result = defaultValue; } return result; }