Methods
(inner) not(val) → (non-null) {val}
Performs right-to-left function composition.
Parameters:
Name | Type | Description |
---|---|---|
val |
any |
Returns:
- Type
- val
Example
var f = function(x){ return typeof(x) === 'Number'}
var g = 'Hello world !'
let testNot= not(f(g) // true