Ignore:
Timestamp:
12/12/24 17:06:06 (5 weeks ago)
Author:
stefan toskovski <stefantoska84@…>
Branches:
main
Parents:
d565449
Message:

Pred finalna verzija

File:
1 edited

Legend:

Unmodified
Added
Removed
  • imaps-frontend/node_modules/@babel/core/cjs-proxy.cjs

    rd565449 r0c6b92a  
    3030for (const name of functionNames) {
    3131  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
    3241    babelP.then(babel => {
    3342      babel[name](...args);
Note: See TracChangeset for help on using the changeset viewer.