format: prettify entire project

This commit is contained in:
Rim
2025-04-02 06:50:39 -04:00
parent 86f0782a98
commit 7ccc0be712
1711 changed files with 755867 additions and 235931 deletions

2
node_modules/has/package.json generated vendored
View File

@ -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
View File

@ -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);
};