var removeByIndex = function(arr, i){ arr.splice(i,1); }; export default removeByIndex;