babel plugin system import transformer:将import()和System.import()转换为Babel的UMD模式转换
babel插件系统导入变压器 插件,用等效的UMD模式替换import()和System.import() 变身 import ( './utils/serializer' ) . then ( function ( module ) { console . log ( module ) ; } ) ; // AND System . import ( './utils/serializer' ) . then ( function ( module ) { console . log ( module ) ; } ) ; 到 new Promise ( function ( resolve , reject ) { var global = window ; if ( typeof global . define === 'function' && g
文件列表
babel-plugin-system-import-transformer-master.zip
(预估有个63文件)
babel-plugin-system-import-transformer-master
.travis.yml
40B
.eslintrc
401B
.babelrc
109B
.lintstagedrc
113B
package.json
2KB
test
index.js
4KB
fixtures
umd
暂无评论