You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
430 B
JavaScript
18 lines
430 B
JavaScript
/**
|
|
* babel-plugin-espower:
|
|
* Babel plugin for power-assert
|
|
*
|
|
* https://github.com/power-assert-js/babel-plugin-espower
|
|
*
|
|
* Copyright (c) 2015-2017 Takuto Wada
|
|
* Licensed under the MIT license.
|
|
* https://github.com/power-assert-js/babel-plugin-espower/blob/master/LICENSE
|
|
*/
|
|
'use strict';
|
|
|
|
var createEspowerPlugin = require('./create');
|
|
|
|
module.exports = function (babel) {
|
|
return createEspowerPlugin(babel);
|
|
};
|