Template Upload

This commit is contained in:
SOUTHERNCO\x2mjbyrn
2017-05-17 13:45:25 -04:00
parent 415b9c25f3
commit 7efe7605b8
11476 changed files with 2170865 additions and 34 deletions

7
node_modules/has/test/.jshintrc generated vendored Normal file
View File

@ -0,0 +1,7 @@
{
"globals": {
"expect": false,
"run": false
},
"expr": true
}

10
node_modules/has/test/index.js generated vendored Normal file
View File

@ -0,0 +1,10 @@
global.expect = require('chai').expect;
var has = require('../src');
describe('has', function() {
it('works!', function() {
expect(has({}, 'hasOwnProperty')).to.be.false;
expect(has(Object.prototype, 'hasOwnProperty')).to.be.true;
});
});