A filter to extract limit elements beginning at offset
  out of an array.
- Copyright:
 - Kiwigrid GmbH 2014-2015
 
- Source:
 
Examples
{{ rows | slice:0:5 }}
    angular.module('exampleApp', ['keta.filters.Slice'])
    .controller('ExampleController', function($scope) {
        // extract 5 elements starting at offset 0
        $scope.pagedRows = $filter('ketaSlice')($scope.rows, 0, 5);
    });