in src/main/js/bmap.js [521:530]
BrowserMap.addDeviceGroup = function (deviceGroup) {
// validate the deviceGroup object
if (typeof deviceGroup.ranking !== 'number') {
throw new TypeError('Expected a Number for device group ' + deviceGroup.name + ' ranking');
}
if (typeof deviceGroup.testFunction !== 'function') {
throw new TypeError('Expected a Function for device group ' + deviceGroup.name + ' testFunction');
}
deviceGroups[deviceGroup.name] = deviceGroup;
};