Changeset 0c6b92a for imaps-frontend/node_modules/@babel/core/cjs-proxy.cjs
Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/node_modules/@babel/core/cjs-proxy.cjs
rd565449 r0c6b92a 30 30 for (const name of functionNames) { 31 31 exports[name] = function (...args) { 32 if ( 33 process.env.BABEL_8_BREAKING && 34 typeof args[args.length - 1] !== "function" 35 ) { 36 throw new Error( 37 `Starting from Babel 8.0.0, the '${name}' function expects a callback. If you need to call it synchronously, please use '${name}Sync'.` 38 ); 39 } 40 32 41 babelP.then(babel => { 33 42 babel[name](...args);
Note:
See TracChangeset
for help on using the changeset viewer.