Index: frontend/node_modules/has-proto/index.js
===================================================================
--- frontend/node_modules/has-proto/index.js	(revision 9af201e94b5a79beb92a30858fc54de4bc3b9449)
+++ frontend/node_modules/has-proto/index.js	(revision 9af201e94b5a79beb92a30858fc54de4bc3b9449)
@@ -0,0 +1,15 @@
+'use strict';
+
+var test = {
+	__proto__: null,
+	foo: {}
+};
+
+// @ts-expect-error: TS errors on an inherited property for some reason
+var result = { __proto__: test }.foo === test.foo
+	&& !(test instanceof Object);
+
+/** @type {import('.')} */
+module.exports = function hasProto() {
+	return result;
+};
