source: Dev/trunk/d3/src/csv/csv.js @ 76

Last change on this file since 76 was 76, checked in by fpvanagthoven, 14 years ago

d3

File size: 130 bytes
Line 
1d3.csv = function(url, callback) {
2  d3.text(url, "text/csv", function(text) {
3    callback(text && d3.csv.parse(text));
4  });
5};
Note: See TracBrowser for help on using the repository browser.