UNPKG

220 BJavaScriptView Raw
1'use strict';
2function interpolate(x, fc) {
3 var a = [], u, i = -1;
4 for (var v of x) {
5 if (++i > 0)
6 a.push(fc(u, v));
7 a.push(u = v);
8 }
9 return a;
10}
11module.exports = interpolate;