PIbd-21_Danilov_V.V._Intern.../Lab4/node_modules/is-negative-zero/index.js
Владимир Данилов ab1cc7aeac Отчет лаб 4
2024-01-09 05:30:48 +04:00

7 lines
122 B
JavaScript

'use strict';
module.exports = function isNegativeZero(number) {
return number === 0 && (1 / number) === -Infinity;
};