This website works better with JavaScript
Domů
Procházet
Nápověda
Přihlásit se
official
/
zyuas.com
Sledovat
2
Oblíbit
0
Rozštěpit
0
Soubory
Úkoly
0
Pull Requesty
0
Wiki
Strom:
b1774d2c86
Větve
Značky
master
zyuas.com
/
node_modules
/
es-abstract
/
helpers
/
isNegativeZero.js
isNegativeZero.js
101 B
Historie
Surový
1
2
3
4
5
'use strict';
module.exports = function isNegativeZero(x) {
return x === 0 && 1 / x === 1 / -0;
};