1.0.0 • Published 4 years ago

minijack v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

Minijack

Build Status Dependency Status devDependency Status

Inline logging inspired by Elm's Debug.log

Get Started

npm install minijack

API

minijack(value , substn, ..., fn)

Passes value and substn to console.log or fn, and then returns value.

  • value: First value passed to the logging function, and then returned. (Any)
  • substn: Optional. Subsequent values passed to the logging function. (Any)
  • fn: Optional. Logging function to use. Default is console.log. (Function)

Usage

const minijack = require('minijack')

const value = minijack(value)
// → Logs and returns value.

const value = minijack(value, console.error)
// → Logs value using console.error. Returns value.

const value = minijack(value, 'is the sample value', console.error)
// → Logs value and 'is the sample value' using console.error. Returns value.

License

See the License file.