@typeforce/nan
Version:
A constant value representing NaN
15 lines (14 loc) • 336 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Produce the constant. This function will return exactly the same value every
* time it is invoked.
*
* @return {number}
* The value.
*/
function calculate() {
return 0 / 0;
}
exports.calculate = calculate;
exports.NAN = calculate();
;