Make 'partial' generic

This commit is contained in:
timramone 2015-09-26 15:05:52 +03:00
parent 54f064352a
commit 34cf33dfb4
2 changed files with 2294 additions and 14 deletions

View File

@ -169,6 +169,10 @@ var exclaim = function (statement) { return statement + "!"; };
var welcome = _.compose(exclaim, greet);
welcome('moe');
var partialApplicationTestFunction = (a: string, b: number, c: boolean, d: string, e: number, f: string) => { }
var partialApplicationResult = _.partial(partialApplicationTestFunction, "", 1);
var parametersCanBeStubbed = _.partial(partialApplicationResult, _, _, _, "");
///////////////////////////////////////////////////////////////////////////////////////
_.keys({ one: 1, two: 2, three: 3 });
@ -336,7 +340,7 @@ function chain_tests() {
.flatten()
.find(num => num % 2 == 0)
.value();
var firstVal: number = _.chain([1, 2, 3])
.first()
.value();

File diff suppressed because it is too large Load Diff