export const TRUTHY_VALUES: any[] = [true, 42, '42', 'foo', .011235,];
export const FALSY_VALUES: any[] = [false, 0, '', null, undefined];
