UNPKG

blips

Version:

State management for the GraphQL heads

9 lines (7 loc) 255 B
export function when(condition, transform, data) { var bool = Boolean(condition); if (typeof condition === 'function') { bool = Boolean(condition(data)); } return bool ? typeof transform === 'function' ? transform(data) : transform : data; }