0.1.1 • Published 7 years ago

babel-plugin-transform-console-log-self v0.1.1

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

babel-plugin-transform-console-log-self

Makes console.log calls print their arguments in textual form.

Example

const a = 11, b = 22, c = 33, d = 44
console.log(a, b, c + d)

prints 11 22 77. The plugin replaces the console.log above with

console.log("a", a, "b", b, "c + d", c + d)

which prints the much more informative a 11 b 22 c + d 77

Installation

npm install babel-plugin-transform-console-log-self

Usage

Via .babelrc (Recommended)

{
  "plugins": ["transform-console-log-self"]
}

Via CLI

babel --plugins transform-console-log-self script.js

Via Node API

require('babel').transform('code', {
	plugins: ['transform-console-log-self']
})