1.0.3 • Published 7 years ago

handlebars-loop v1.0.3

Weekly downloads
4
License
GPL-3.0
Repository
github
Last release
7 years ago

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

ArgumentTypeDescription
fromNumberThe number to start iterating from.
toNumberThe number to stop iterating at.
increaseNumberThe number to increase by per iteration
1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago

0.0.1

7 years ago