format: prettify entire project
This commit is contained in:
2
node_modules/has/package.json
generated
vendored
2
node_modules/has/package.json
generated
vendored
@ -7,7 +7,7 @@
|
||||
"name": "Thiago de Arruda",
|
||||
"email": "tpadilha84@gmail.com"
|
||||
},
|
||||
"contributors": [
|
||||
"contributors": [
|
||||
{
|
||||
"name": "Jordan Harband",
|
||||
"email": "ljharb@gmail.com",
|
||||
|
9
node_modules/has/src/index.js
generated
vendored
9
node_modules/has/src/index.js
generated
vendored
@ -3,6 +3,9 @@
|
||||
var hasOwnProperty = {}.hasOwnProperty;
|
||||
var call = Function.prototype.call;
|
||||
|
||||
module.exports = call.bind ? call.bind(hasOwnProperty) : function (O, P) {
|
||||
return call.call(hasOwnProperty, O, P);
|
||||
};
|
||||
module.exports =
|
||||
call.bind ?
|
||||
call.bind(hasOwnProperty)
|
||||
: function (O, P) {
|
||||
return call.call(hasOwnProperty, O, P);
|
||||
};
|
||||
|
Reference in New Issue
Block a user