UNPKG

onix-core

Version:
5 lines 107 B
export const pushif = (a: any[], cond: boolean, val: any) => { if (cond) { a.push(val); } }