handlebars-loop
v1.0.3
Published
Handlebars helper that iterates like a for loop.
Downloads
35
Maintainers
Readme
Handlebars Loop
Handlebars helper that iterates through a range of numbers.
Usage
{{#loop 0 5 1}}
<div>{{this}}</div>
{{/loop}}
Should output
<div>0</div>
<div>1</div>
<div>2</div>
<div>3</div>
<div>4</div>
<div>5</div>
Parameters
| Argument | Type | Description | |:----------|:----------|:------------------------------------------| | from | Number | The number to start iterating from. | | to | Number | The number to stop iterating at. | | increase | Number | The number to increase by per iteration |