Skip to content

Instantly share code, notes, and snippets.

View williamhogman's full-sized avatar
🔨
Busy building!

William Högman Rudenmalm williamhogman

🔨
Busy building!
View GitHub Profile
@williamhogman
williamhogman / csv.js
Created October 9, 2011 20:03
JavaScript CSV Parser
String.prototype.parseCSV = function(delim){
return this.split("\n").map(function(r){return r.split((delim || ","))});
}