add constant to lodash

This commit is contained in:
David Morgantini
2014-11-23 22:25:55 +00:00
parent a2786aa377
commit fe4a5c024a
+8
View File
@@ -6324,6 +6324,14 @@ declare module _ {
noop(): void;
}
//_.constant
interface LoDashStatic {
/**
* Creates a function that returns value..
**/
constant<T>(value: T): T;
}
//_.create
interface LoDashStatic {
/**