scope.macro
!Babel Macromacros-badgebabel-plugin-macrosThis is a
babel-plugin-macros
babel-plugin-macros macro for
babel-plugin-console
babel-plugin-console.Please see those projects for more information.
Installation
This module is distributed via npmnpm which is bundled with nodenode and should be installed as one of your project'sdevDependencies
:npm install --save-dev scope.macro
You'll also need to install and configure
babel-plugin-macros
babel-plugin-macros if you
haven't already.Usage
Once you've configuredbabel-plugin-macros
you can import/require scope.macro
. For example:import scope from 'scope.macro'
function add100(a) {
const oneHundred = 100
scope('Add 100 to another number')
return add(a, oneHundred)
}
function add(a, b) {
return a + b
}