mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-01-30 05:27:30 +00:00
commit
83ea7f2439
@ -295,6 +295,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 });
|
||||
@ -462,7 +466,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