exposeLoader.js 231 B

123456789
  1. /* Any copyright is dedicated to the Public Domain.
  2. http://creativecommons.org/publicdomain/zero/1.0/ */
  3. exports.exerciseLazyRequire = (name, path) => {
  4. const o = {};
  5. loader.lazyRequireGetter(o, name, path);
  6. return o;
  7. };