This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @module limitTo | |
* | |
* Creates a new array or string containing only a specified number of elements. | |
* The elements are taken from either the beginning or the end of the source array | |
* or string, as specified by the value and sign (positive or negative) of limit. | |
* | |
* Same behavior as AngularJS limitTo filter: http://docs.angularjs.org/api/ng/filter/limitTo | |
* | |
* To use this filter in a template, first register it in the Nunjucks environment: |