An open API service indexing awesome lists of open source software.

https://github.com/xotic750/infinity-x

The constant value Infinity.
https://github.com/xotic750/infinity-x

browser infinity javascript nodejs number

Last synced: 3 months ago
JSON representation

The constant value Infinity.

Awesome Lists containing this project

README

          


Travis status


Dependency status


devDependency status


npm version


jsDelivr hits


bettercodehub score


Coverage Status

## infinity-x

The constant value Infinity.

### `module.exports` : number

The constant value Infinity derived mathematically by 1 / 0.

**Kind**: Exported member
**Example**

```js
import INFINITY from 'infinity-x';

console.log(INFINITY === Infinity); // true
console.log(-INFINITY === -Infinity); // true
console.log(INFINITY === -Infinity); // false
```