Files: d456a6cc8589489e558e6164750474ed2cfc961e / test / test-79-npm / stamp.js
233 bytesRaw
1 | |
2 | |
3 | 'use strict'; |
4 | |
5 | var o = { |
6 | p: process.platform, |
7 | a: process.arch, |
8 | m: parseInt(process.versions.modules, 10) |
9 | }; |
10 | |
11 | if (module.parent) { |
12 | module.exports = o; |
13 | } else { |
14 | process.stdout.write(JSON.stringify(o)); |
15 | } |
16 |
Built with git-ssb-web