UNPKG

celerichain-ember-cor

Version:

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

6 lines (4 loc) 170 B
import { isBlank } from '@ember/utils'; export default function withDefaultValue(value, defaultValue = 'N/A') { return isBlank(value) ? defaultValue : value; }