browser.js 406 B

12345678910111213141516
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.default = _default;
  6. exports.resolveFSPath = resolveFSPath;
  7. function _default(moduleName, dirname, absoluteRuntime) {
  8. if (absoluteRuntime === false) return moduleName;
  9. resolveFSPath();
  10. }
  11. function resolveFSPath() {
  12. throw new Error("The 'absoluteRuntime' option is not supported when using @babel/standalone.");
  13. }