Creates objects that generate number sequences.
Objects are iterable according to ECMAScript 6 (for example, they can be used in for-of
loop).
Disclaimer: this package does not have anything common with ECMAScript 6 generators nor with yield
operator.
npm install numgen
component install gamtiq/numgen
jam install numgen
bower install numgen
jspm install numgen
spm install numgen
Use dist/numgen.js
or dist/numgen.min.js
(minified version).
var NumGen = require("numgen");
var NumGen = require("gamtiq/numgen");
...
require(["numgen"], function(NumGen) {
...
});
System.import("numgen").then(function(NumGen) {
...
});
define(["path/to/dist/numgen.js"], function(NumGen) {
...
});
<!-- Use bower_components/numgen/dist/numgen.js if the library was installed by Bower -->
<script type="text/javascript" src="path/to/dist/numgen.js"></script>
<script type="text/javascript">
// numgen is available via NumGen field of window object
...
</script>
var seq = new NumGen({
startValue: 3,
factor: 4,
valueChange: function(data) {
return data.index > 1 ? data.current : data.value;
}
});
console.log("Geometric progression:");
for (var nI = 1; nI < 11; nI++) {
console.log("#", nI, " - ", seq.getNext());
}
console.log("Next: ");
for (var num of seq) {
nI = seq.getIndex();
console.log("#", nI, " - ", num);
if (nI > 19) {
break;
}
}
See test/numgen.js
for additional examples.
See doc
folder.
MIT