Files: efcf9fd06b02fa9bcd28681b4c777224e19702bb / test / test-50-package-json / test-x-index.js
294 bytesRaw
1 | /* eslint-disable no-useless-concat */ |
2 | |
3 | 'use strict'; |
4 | |
5 | var theA = './test-y-' + 'resolve-A.js'; |
6 | var theB = './test-y-' + 'resolve-B.txt'; |
7 | var theC = './test-y-' + 'resolve-C.json'; |
8 | |
9 | console.log([ |
10 | require(theA).toString(), |
11 | require(theB).toString(), |
12 | require(theC).toString() |
13 | ].join('\n')); |
14 |
Built with git-ssb-web