Add comment to lazy flags. [ci skip]

This commit is contained in:
John-David Dalton
2014-10-12 12:56:33 -07:00
parent e072fe6ea9
commit 32521cd1b6

View File

@@ -31,6 +31,7 @@
var HOT_COUNT = 150,
HOT_SPAN = 16;
/** Used to indicate the type of lazy iteratees */
var LAZY_FILTER_FLAG = 1,
LAZY_MAP_FLAG = 2,
LAZY_WHILE_FLAG = 3;
@@ -252,7 +253,7 @@
'`': '`'
};
/** Used to map lazy iteratee flags to lazy methods */
/** Used to map iteratee types to lazy methods */
var lazyIterateeTypes = {
'filter': LAZY_FILTER_FLAG,
'map': LAZY_MAP_FLAG,