MCPcopy Create free account
hub / github.com/DeepNotesApp/DeepNotes / iif

Function iif

packages/@stdlib/misc/src/utils.ts:69–71  ·  view source on GitHub ↗
(condition: any, a: any, b?: any)

Source from the content-addressed store, hash-verified

67}
68
69export function iif(condition: any, a: any, b?: any): any {
70 return condition ? a : b;
71}
72
73export function isPrimitive(value: any) {
74 return value !== Object(value);

Callers 3

sendMailjetMailFunction · 0.90
sendBrevoMailFunction · 0.90
sendSendGridMailFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected