packpath
Version:
Find the path(s) package.json.
21 lines (16 loc) • 478 B
JavaScript
var faux_module_self = require('faux-module-self');
module.exports.hiFromParent = function() {
return 'HI FROM PARENT';
}
module.exports.selfFromPackPath = function() {
return faux_module_self.selfFromPackPath();
}
module.exports.self = function() {
return faux_module_self.self();
}
module.exports.parentFromPackPath = function() {
return faux_module_self.parentFromPackPath();
}
module.exports.parent = function() {
return faux_module_self.parent();
}