Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/madnight/array-interpolatejs

Interpolate an array of numbers in js
https://github.com/madnight/array-interpolatejs

array array-manipulations es6 es7 functional-programming interpolation javascript library math npm

Last synced: about 2 months ago
JSON representation

Interpolate an array of numbers in js

Awesome Lists containing this project

README

        

# array-interpolatejs
Interpolate an array of numbers in js

## Requirements
* node 8.0 or higher
* npm or yarn

## Installation

`npm install array-interpolatejs`

## Usage
```javascript
const { interpolateArray } = require('array-interpolatejs')

interpolateArray(3)([1, 2, 3])
//[1, 2, 3]

interpolateArray(5)([1, 2, 3])
//[1, 1.5, 2, 2.5, 3]

iterpolateArray(4)([5, 9, 500, 30, 80, 5, 9])
//[5, 500, 80, 9]

interpolateArray(9)([9])
//[9, 9, 9, 9, 9, 9, 9, 9, 9]
```