Module: not

Methods

(inner) not(val) → (non-null) {val}

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