UNPKG

@lipagas/ember-core

Version:

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

11 lines (8 loc) 235 B
import { isBlank } from '@ember/utils'; import { get } from '@ember/object'; export default function isset(target, key = null) { if (key === null) { return !isBlank(target); } return !isBlank(get(target, key)); }