Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/andrew--r/sum-strings


https://github.com/andrew--r/sum-strings

Last synced: about 6 hours ago
JSON representation

Awesome Lists containing this project

README

        

[![Build Status](https://travis-ci.org/andrew--r/sum-strings.svg?branch=master)](https://travis-ci.org/andrew--r/sum-strings)

# sum-strings

Sum strings like integers without using integers. Yep, that's a bit crazy.

```javascript
const sumStrings = require('sum-strings');

sumStrings('3', '14'); // -> 17
sumStrings('12999', '1'); // -> 13000
sumStrings('3000', '5000'); // -> 8000
```