This website works better with JavaScript
صفحهٔ اصلی
گشتوگذار
راهنما
ورود
official
/
zyuas.com
دنبال کردن
2
ستاره دار
0
انشعاب
0
پروندهها
مشکلات
0
درخواست واکشی
0
ویکی
درخت:
b1774d2c86
شاخهها
تگها
master
zyuas.com
/
node_modules
/
es-abstract
/
helpers
/
isNegativeZero.js
isNegativeZero.js
101 B
تاريخچه
خام
1
2
3
4
5
'use strict';
module.exports = function isNegativeZero(x) {
return x === 0 && 1 / x === 1 / -0;
};