You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
751 B
JavaScript
39 lines
751 B
JavaScript
"use strict";
|
|
|
|
var helpers = {},
|
|
winston = require('winston');
|
|
|
|
helpers.toMap = function(data) {
|
|
var map = {};
|
|
for (var i = 0; i<data.length; ++i) {
|
|
map[data[i]._key] = data[i];
|
|
}
|
|
return map;
|
|
};
|
|
|
|
helpers.fieldToString = function(field) {
|
|
if(field === null || field === undefined) {
|
|
return field;
|
|
}
|
|
|
|
if(typeof field !== 'string') {
|
|
field = field.toString();
|
|
}
|
|
// if there is a '.' in the field name it inserts subdocument in mongo, replace '.'s with \uff0E
|
|
field = field.replace(/\./g, '\uff0E');
|
|
return field;
|
|
};
|
|
|
|
helpers.valueToString = function(value) {
|
|
if(value === null || value === undefined) {
|
|
return value;
|
|
}
|
|
|
|
return value.toString();
|
|
};
|
|
|
|
helpers.noop = function() {};
|
|
|
|
helpers.KEY_LIMIT = 100;
|
|
|
|
module.exports = helpers; |