UNPKG

@spotinst/spinnaker-deck

Version:

Spinnaker-Deck service, forked with support to Spotinst

7 lines (5 loc) 198 B
import { isNil } from 'lodash'; /** returns the first value that is neither null nor undefined */ export function firstDefined<T>(...values: T[]): T { return values.find((val) => !isNil(val)); }