19 lines
396 B
JavaScript
19 lines
396 B
JavaScript
/*!
|
|
* lazy.js - lazy loading for bcoin
|
|
* Copyright (c) 2016, Christopher Jeffrey (MIT License).
|
|
* https://github.com/bcoin-org/bcoin
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
module.exports = function lazy(require, exports) {
|
|
return function _require(name, path) {
|
|
var cache;
|
|
exports.__defineGetter__(name, function() {
|
|
if (!cache)
|
|
cache = require(path);
|
|
return cache;
|
|
});
|
|
};
|
|
};
|