fable-core
Advanced tools
Comparing version 0.0.10 to 0.0.11
@@ -1236,2 +1236,7 @@ /* global define */ | ||
}; | ||
Seq.rangeChar = function (first, last) { | ||
return Seq.unfold(function (x) { | ||
return (x <= last) ? [x, String.fromCharCode(x.charCodeAt(0) + 1)] : null; | ||
}, first); | ||
}; | ||
Seq.range = function (first, last) { | ||
@@ -1238,0 +1243,0 @@ return Seq.rangeStep(first, 1, last); |
{ | ||
"name": "fable-core", | ||
"version": "0.0.10", | ||
"version": "0.0.11", | ||
"description": "Fable core lib & bindings for native JS objects, browser and node APIs", | ||
@@ -5,0 +5,0 @@ "main": "fable-core.js", |
4527903
1958