reframme
v0.3.5
Published
tiny and efficient javascript reframe library
Downloads
1
Readme
tiny and efficient javascript reframe library
Install
npm install reframme
Usage
const reframme = require('reframme');
reframme([1, 2, 3, 5.9, 6, 7.9, 10]);
// will return [1, 2, 3, null, null, 6, null, 7.9, null, 10]
reframme([1, 2, 3, 5.9, 6, 7.9, 10], {isKeepGood: true});
// will return [1, 2, 3, 3, 3, 6, 6, 7.9, 7.9, 10]
What is for
To be filled...
Bugs, issues and features
Please [email protected]. Widely open for pull-requests.