babel-plugin-transform-util-promisify
v0.2.2
Published
Transforms util.promisify for node versions < 8
Downloads
51
Maintainers
Readme
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');