# big-number-addition

> 大整数相加

Latest version **1.0.6** (published 2020-04-14) · ISC license · 0 weekly downloads

## Install

```sh
npm install big-number-addition
pnpm add big-number-addition
yarn add big-number-addition
bun add big-number-addition
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.6 |
| Published | 2020-04-14 |
| First published | 2020-04-02 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 7.8 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Maintainers | tainzun |
| Keywords | 大数字求和, big number |

## Links

- npm: https://www.npmjs.com/package/big-number-addition
- npm.io page: https://npm.io/package/big-number-addition

## Alternatives

- [random-seedable](https://npm.io/package/random-seedable.md) — 27.9K weekly downloads
- [n2words](https://npm.io/package/n2words.md) — 22.2K weekly downloads
- [@stdlib/math-base-special-factorialln](https://npm.io/package/@stdlib/math-base-special-factorialln.md) — 5.7K weekly downloads
- [@stdlib/math-base-special-abs2](https://npm.io/package/@stdlib/math-base-special-abs2.md) — 1.7K weekly downloads
- [commons-math-interpolation](https://npm.io/package/commons-math-interpolation.md) — 1.4K weekly downloads

## Recent versions

- 1.0.6 (latest) — 2020-04-14
- 1.0.5 — 2020-04-14
- 1.0.4 — 2020-04-14
- 1.0.3 — 2020-04-14
- 1.0.2 — 2020-04-02
- 1.0.1 — 2020-04-02
- 1.0.0 — 2020-04-02

## README

# 大整数加法

由于 JavaScript 能表示的整数的范围在 2 的 53 次幂之间，当处于这个区间之外的整数  

JavaScript 无法处理，因此提供一个 大整数相加 的基础库，用于计算大整数相加的问题   

由于 JavaScript 无法表示数字类型的大整数，因此参数很返回的结果都为 字符类型的数字字符串  

## 快速开始

### 安装
```
  npm i big-number-addition
```

### 使用
```
  import bigNumberAddition from 'big-number-addition'

  // ...

  const stringNumber = bigNumberAddition('999', '1')
```

---
_Source: https://npm.io/package/big-number-addition · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
