1.0.0 • Published 6 years ago

scope.macro v1.0.0

Weekly downloads
5
License
MIT
Repository
github
Last release
6 years ago

scope.macro

Babel Macro

This is a babel-plugin-macros macro for babel-plugin-console.

Please see those projects for more information.

Installation

This module is distributed via npm which is bundled with node and should be installed as one of your project's devDependencies:

npm install --save-dev scope.macro

You'll also need to install and configure babel-plugin-macros if you haven't already.

Usage

Once you've configured babel-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
}