Browse Source

Added space to console warning

codeClimate
jos 8 years ago
parent
commit
c7aac14dba
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      lib/DataSet.js

+ 1
- 1
lib/DataSet.js View File

@ -264,7 +264,7 @@ DataSet.prototype.update = function (data, senderId) {
if (data[i] instanceof Object){
addOrUpdate(data[i]);
} else {
console.warn("Ignoring input item, which is not an object at index"+i);
console.warn('Ignoring input item, which is not an object at index ' + i);
}
}
}

Loading…
Cancel
Save