packages/babel-plugin-transform-runtime/src/get-runtime-path/browser.js

Summary

Maintainability
A
0 mins
Test Coverage
export default function (moduleName, dirname, absoluteRuntime) {
  if (absoluteRuntime === false) return moduleName;

  throw new Error(
    "The 'absoluteRuntime' option is not supported when using @babel/standalone.",
  );
}