Skip to content

Instantly share code, notes, and snippets.

@bultas
Last active March 6, 2020 20:20
Show Gist options
  • Save bultas/20191c46e02c3422b45eb4da36274fc0 to your computer and use it in GitHub Desktop.
Save bultas/20191c46e02c3422b45eb4da36274fc0 to your computer and use it in GitHub Desktop.
Design by contract
function warn(a, b) {
console.warn(a, b);
}
export default guard( [ a => true , b => false ], () => true )( warn );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment