mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-01-30 05:27:30 +00:00
Make 'partial' generic
This commit is contained in:
parent
54f064352a
commit
34cf33dfb4
@ -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();
|
||||
|
||||
2302
underscore/underscore.d.ts
vendored
2302
underscore/underscore.d.ts
vendored
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user