One more comment

This commit is contained in:
Wert_Lex 2015-10-30 21:19:37 +06:00
parent 638002bc59
commit 2f31701655
1 changed files with 5 additions and 1 deletions

View File

@ -91,7 +91,11 @@ function join(oneToOneIdMap, oneToManyIdMap, mergeF) {
}
/**
* Map with arbitrary keys and values. User .set() and .get() to work with values instead of []
* @returns {{set: Function, get: Function, remove: Function, exist: Function, getKeys: Function}}
* @constructor
*/
function KVMap(){
var _originalKeyFieldName = 'originalKey';
var _valueKeyFieldName = 'value';