Files: ca90b5ca0579ebdcc0635288bce4978e3fb200f5 / test / test-50-tamper-core / test-x-index.js
286 bytesRaw
1 | ; |
2 | |
3 | var fsname = 'fs'; |
4 | var fs = require(fsname); |
5 | var pathname = 'path'; |
6 | var pathp = require.resolve(pathname); |
7 | var path = require(pathp); |
8 | |
9 | console.log([ |
10 | |
11 | typeof fs, |
12 | fs ? typeof fs.statSync : 'empty', |
13 | typeof path, |
14 | path ? typeof path.basename : 'empty' |
15 | |
16 | ].join('\n')); |
17 |
Built with git-ssb-web