1.0.0 • Published 9 years ago

jazzon-repeat v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
9 years ago

jazzon-repeat

Repeat given value n number of times

Installation

$ npm install --save jazzon-repeat

Usage

The helper "repeat" clones (deep) the current state given number of times and puts them in an array.

let jazzon = require('jazzon');
let repeat = require('jazzon-repeat');

jazzon
  .use(repeat())
  .compile({ foo: '@{ random(1, 10) | repeat(3) }'})
  .then(result => console.log(result)) // => {foo: [7, 7, 7]}