0.2.2 • Published 6 years ago

babel-plugin-transform-util-promisify v0.2.2

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

npm version Build Status

babel-plugin-transform-util-promisify

Transforms util.promisify to a function definition for node versions < 8, automatically detects if node version >= 8 and does nothing if so.

Install

npm install babel-plugin-transform-util-promisify --save-dev

Usage

Add at the top of plugins in .babelrc:

{
  "plugins": [
    "transform-util-promisify"
    ],
    "presets": [
      ["env", {
        "targets": {
          "node": "current"
        }
      }]
    ]
}

The plugin currently transforms code only in these forms:

import { promisify } from 'util';

and

const { promisify } = require('promisify');

License

MIT