electron/atom/common/api/lib/exports/electron.js

60 lines
1.3 KiB
JavaScript
Raw Normal View History

2016-01-12 02:40:23 +00:00
/* Do not expose the internal modules to `require`. */
exports.hideInternalModules = function() {
var globalPaths;
globalPaths = require('module').globalPaths;
if (globalPaths.length === 3) {
/* Remove the "common/api/lib" and "browser-or-renderer/api/lib". */
return globalPaths.splice(0, 2);
}
};
/* Attaches properties to |exports|. */
exports.defineProperties = function(exports) {
return Object.defineProperties(exports, {
/* Common modules, please sort with alphabet order. */
clipboard: {
/* Must be enumerable, otherwise it woulde be invisible to remote module. */
enumerable: true,
get: function() {
return require('../clipboard');
}
},
crashReporter: {
enumerable: true,
get: function() {
return require('../crash-reporter');
}
},
nativeImage: {
enumerable: true,
get: function() {
return require('../native-image');
}
},
shell: {
enumerable: true,
get: function() {
return require('../shell');
}
},
/* The internal modules, invisible unless you know their names. */
CallbacksRegistry: {
get: function() {
return require('../callbacks-registry');
}
},
deprecate: {
get: function() {
return require('../deprecate');
}
}
});
};