0.1.1 • Published 9 years ago
babel-plugin-transform-console-log-self v0.1.1
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-selfUsage
Via .babelrc (Recommended)
{
"plugins": ["transform-console-log-self"]
}Via CLI
babel --plugins transform-console-log-self script.jsVia Node API
require('babel').transform('code', {
plugins: ['transform-console-log-self']
})