# max-safe-int

> Return the maximum safe integer in JavaScript.

[![MIT License](https://img.shields.io/badge/license-MIT_License-green.svg?style=flat-square)](https://github.com/mock-end/max-safe-int/blob/master/LICENSE)

## Install

```
$ npm install --save max-safe-int 
```

## Usage

```js
var MAX_SAFE_INT = require('max-safe-int');
// => 9007199254740991
```

## Related

- [max-int](https://github.com/mock-end/max-int) - Return the maximum integer in JavaScript.
- [max-array-length](https://github.com/mock-end/max-array-length) - Return the maximum length of array in JavaScript.
