This commit is contained in:
Mike Bostock 2014-10-16 23:22:56 -07:00
Родитель 74aaf245d0
Коммит 1398d4d8a3
1 изменённых файлов: 1 добавлений и 5 удалений

Просмотреть файл

@ -1,13 +1,9 @@
var jsdom = require("jsdom");
global.document = jsdom.jsdom("<html><head></head><body></body></html>");
var d3 = require("../../");
var formatNumber = d3.format(",.02r"),
values = d3.range(0, 1000),
key = function(x) { return x; },
div = d3.select(document.createElement("div")),
div = d3.select("html").append("div"),
selection,
n = 1e3,
then = Date.now();