Skip to content

Instantly share code, notes, and snippets.

View vugluskr86's full-sized avatar

Vasliy Ivashkin vugluskr86

  • https://www.google.com/maps/@57.9233507,59.8669296,11z
View GitHub Profile
@vugluskr86
vugluskr86 / CsvExporter.js
Created June 24, 2016 19:38
Backbone.Collection CSV exporter. Client side
class CsvExporter {
constructor (collection, options) {
this.collection = collection;
this.options = {
format : false,
titles : false
};
_.extend(this.options, options || {});
}