UNPKG

sound-manager

Version:
12 lines (10 loc) 219 B
import { ICollection, } from '../interfaces/ICollection'; export function nameOrAllKeys<T>( name: string | null | undefined, collection: ICollection<T>, ) { return name || Object.keys(collection); }