blob: 44e06954ce4fe5cd076ef0fd403ce5d4a73fd138 [file] [log] [blame]
import {
createSizedArray,
} from '../helpers/arrays';
const pooling = (function () {
function double(arr) {
return arr.concat(createSizedArray(arr.length));
}
return {
double: double,
};
}());
export default pooling;