Index: frontend/node_modules/math-intrinsics/isNegativeZero.js
===================================================================
--- frontend/node_modules/math-intrinsics/isNegativeZero.js	(revision 9af201e94b5a79beb92a30858fc54de4bc3b9449)
+++ frontend/node_modules/math-intrinsics/isNegativeZero.js	(revision 9af201e94b5a79beb92a30858fc54de4bc3b9449)
@@ -0,0 +1,6 @@
+'use strict';
+
+/** @type {import('./isNegativeZero')} */
+module.exports = function isNegativeZero(x) {
+	return x === 0 && 1 / x === 1 / -0;
+};
