Commit 1d997044 1d9970448ef68079f2fd8801d08dafe584c6073a by Nicolas Perriault

jshint, your picky.

1 parent ead6c5db
...@@ -486,6 +486,7 @@ exports.node = node; ...@@ -486,6 +486,7 @@ exports.node = node;
486 * @return Array 486 * @return Array
487 */ 487 */
488 function objectValues(obj) { 488 function objectValues(obj) {
489 "use strict";
489 return Object.keys(obj).map(function(arg) { 490 return Object.keys(obj).map(function(arg) {
490 return obj[arg]; 491 return obj[arg];
491 }); 492 });
......