Commit dist files

This commit is contained in:
Federico Grandi
2020-03-03 19:32:47 +01:00
parent 06fd39b8b7
commit 45c7fd7a48
216 changed files with 16147 additions and 0 deletions

9
node_modules/resolve/test/nonstring.js generated vendored Normal file
View File

@@ -0,0 +1,9 @@
var test = require('tape');
var resolve = require('../');
test('nonstring', function (t) {
t.plan(1);
resolve(555, function (err, res, pkg) {
t.ok(err);
});
});