| asArray | asArray convert a value to an array | 
| asJsonObj | - | 
| expect | expect assert a value is notNil and return the value typed as such panic otherwise | 
| isArray | isArray Typeguard - check a value is an Array | 
| isEmpty | isEmpty Logic - check a given value is considered empty empty depends on typeof value: - null - undefined - array: length = 0 - string: length = 0 | 
| isNil | isNullish Typeguard - check a value is undefined or null | 
| isObject | isObject Typeguard - check a value is an object in the conceptual sense not the JS sense excluding JS overlap with: null Arrays Functions | 
| isString | isString TypeGuard to check a value is a string | 
| notEmptyString | notEmptyString Typeguard + Logic - check a value is a string with contents | 
| notNil | notNil Typeguard - check a value is neither undefined or null | 
| validate | validate Type assertion - assert a value matches a schema | 
| validateSafe | validateSafe Typeguard - check a value matches a schema |