Newer
Older
alert / js / node_modules / @babel / plugin-transform-runtime / src / get-runtime-path / browser.ts
@Réz István Réz István on 18 Nov 2021 227 bytes first commit
export default function (moduleName, dirname, absoluteRuntime) {
  if (absoluteRuntime === false) return moduleName;

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