mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
ccd4a3b25b
--HG-- extra : transplant_source : %C1%9CG%94%95%F0U%A6%EF%AA%C9%B9%BB%1C%D4%FC%D0%CDX%CE
9 lines
231 B
JavaScript
9 lines
231 B
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
exports.exerciseLazyRequire = (name, path) => {
|
|
const o = {};
|
|
loader.lazyRequireGetter(o, name, path);
|
|
return o;
|
|
};
|