mirror of
https://github.com/status-im/poc-core-secure-react-native.git
synced 2026-08-31 03:01:09 +00:00
19 lines
467 B
JavaScript
19 lines
467 B
JavaScript
/*
|
|
* single-property.js: Sample of including a single specific properties from a package.json file
|
|
*
|
|
* (C) 2011, Charlie Robbins
|
|
*
|
|
*/
|
|
|
|
var util = require('util'),
|
|
pkginfo = require('../lib/pkginfo')(module, 'version');
|
|
|
|
exports.someFunction = function () {
|
|
console.log('some of your custom logic here');
|
|
};
|
|
|
|
console.log('Inspecting module:');
|
|
console.dir(module.exports);
|
|
|
|
console.log('\nAll exports exposed:');
|
|
console.error(Object.keys(module.exports)); |