/** * @file The constant value Infinity. * @version 1.0.0 * @author Xotic750 * @copyright Xotic750 * @license {@link MIT} * @module infinity-x */ 'use strict'; /** * The constant value Infinity derived mathematically by 1 / 0. * * @type number * @example * var INFINITY = require('infinity-x'); * * INFINITY === Infinity; // true * -INFINITY === -Infinity; // true * INFINITY === -Infinity; // false */ module.exports = 1 / 0;