v1.0 with SW PWA enabled

This commit is contained in:
Blomios
2026-01-01 17:40:53 +01:00
parent 1c0e22aac1
commit 3c8bebb2ad
29775 changed files with 2197201 additions and 119080 deletions

28
frontend/node_modules/has-proto/test/index.js generated vendored Normal file
View File

@ -0,0 +1,28 @@
'use strict';
var test = require('tape');
var gPO = require('reflect.getprototypeof/polyfill')();
var gOPD = require('gopd');
var hasProto = require('../');
var getter = require('dunder-proto/get');
test('hasProto', function (t) {
var result = hasProto();
t.equal(typeof result, 'boolean', 'returns a boolean (' + result + ')');
var obj = { __proto__: null };
if (result) {
t.notOk('toString' in obj, 'null object lacks toString');
if (gOPD && getter) {
t.equal(getter(obj), null);
}
} else {
t.ok('toString' in obj, 'without proto, null object has toString');
t.equal(gPO(obj), Object.prototype);
}
t.end();
});