1.0.2 • Published 3 years ago

bind-console v1.0.2

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

Binds console methods (for Internet Explorer) to be usable without console object, for functional programming.

const bindConsole = require("bind-console");

const log = console.log;
log(123); // error

bindConsole();

const boundLog = console.log;
boundLog(123); // 123

// Use case
R.pipe(
    R.add(4),
    R.mul(10),
    R.tap(console.log),
)
1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago