mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-23 12:57:25 +08:00
Make 'partial' generic
This commit is contained in:
@@ -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
Reference in New Issue
Block a user