A sliding window of a given size over the input
npm install windowednode-windowed
====
A sliding window of a given size over the input
npm install windowed
`Usage
`js
var windowed = require('windowed');
var foo = windowed(3, [0, 1, 2, 3, 4]);
console.log(foo); // [[0, 1, 2], [1, 2, 3], [2, 3, 4]]
``