From 2f31701655840acb86b6e2d62aa2ab81e60f8b2d Mon Sep 17 00:00:00 2001 From: Wert_Lex Date: Fri, 30 Oct 2015 21:19:37 +0600 Subject: [PATCH] One more comment --- lib/include_utils.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/include_utils.js b/lib/include_utils.js index e9eb286d..e0788dd8 100644 --- a/lib/include_utils.js +++ b/lib/include_utils.js @@ -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';