UNPKG

ember-data-factory-guy

Version:
10 lines (9 loc) 167 B
export default function (fn) { let index = 1; this.next = function () { return fn.call(this, index++); }; this.reset = function () { index = 1; }; }