The copyright and license notice is already in the LICENSE file. There is no justifiable reason to also require that it be included in every file, since the individual files are not individually distributed except as part of the entire package.
8 lines
344 B
JavaScript
8 lines
344 B
JavaScript
console.error(__filename);
|
|
console.error(module.paths.join('\n') + '\n');
|
|
// this should work, and get the one that doesn't throw
|
|
var assert = require('assert');
|
|
assert.equal(require('bar'), require('../bar.js'));
|
|
|
|
// this should work, and get the one in ./node_modules/asdf.js
|
|
assert.equal(require('asdf'), require('./node_modules/asdf.js'));
|