UNPKG

typify-bin

Version:

Runtime type-checking for JavaScript.

9 lines (6 loc) 145 B
"use strict"; // :: boolean -> boolean function not(b) { return !b; } console.log(not(true)); console.log(not(false)); // console.log(not(1));