File size: 100 Bytes
fcf3b03
 
 
 
 
1
2
3
4
5
6
d3.keys = function(map) {
  var keys = [];
  for (var key in map) keys.push(key);
  return keys;
};