client-side-csv-generator
client-side-csv-generator copied to clipboard
IE11 support
Could you please consider this advice in order to implementation of IE11 support for this library?
Thank you Denis Lukov,
A pull request will be appreciated.
If you decide to implement it, please pay attention that currently some Formatting options are supported: https://github.com/AlexLibs/client-side-csv-generator#formatting-options
even obviously it's better to partly support IE11 rather than not to support it at all
I have refactored this library to support IE and use a newer toolset i.e.
The package is more modular and is ready to be shared via npm. We based our implementation on your work, I would like to know if you want to become a contributor. Here is an example of how we use it in an umd type application.
import * as generator from 'csv-generator-client'
let settings = {separator: '|', addQuotes: true}
generator.download({settings, fileName, dataArray})
Or
var generator = require('csv-generator-client')
// In this case the default settings are used.
generator.download({fileName: fileName, dataArray: dataArray})
Please let me know if you are interested. The repository name is csv-generator-client
Thank you.