diff options
author | Mihai Bazon <mihai@bazon.net> | 2012-10-02 12:45:31 +0300 |
---|---|---|
committer | Mihai Bazon <mihai@bazon.net> | 2012-10-02 12:45:58 +0300 |
commit | e1098b04a7e8b3ebd4faf598b2b8b30bceba14d6 (patch) | |
tree | 3362f9de5718a10f982feab57a44ad9df4de2c83 /lib/utils.js | |
parent | 211792757cf8cb8529f99122efa52f5f5d558132 (diff) | |
download | tracifyjs-e1098b04a7e8b3ebd4faf598b2b8b30bceba14d6.tar.gz tracifyjs-e1098b04a7e8b3ebd4faf598b2b8b30bceba14d6.zip |
"use strict";
Diffstat (limited to 'lib/utils.js')
-rw-r--r-- | lib/utils.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/utils.js b/lib/utils.js index 3b8aa00c..83e514a4 100644 --- a/lib/utils.js +++ b/lib/utils.js @@ -41,6 +41,8 @@ ***********************************************************************/ +"use strict"; + function curry(f) { var args = slice(arguments, 1); return function() { return f.apply(this, args.concat(slice(arguments))); }; |