mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
8 lines
223 B
JavaScript
8 lines
223 B
JavaScript
if (typeof Profile === "function" &&
|
|
process.env.METEOR_PROFILE) {
|
|
var Mp = meteorInstall.Module.prototype;
|
|
Mp.require = Profile(function (id) {
|
|
return "require(" + JSON.stringify(id) + ")";
|
|
}, Mp.require);
|
|
}
|