client-side-csv-generator icon indicating copy to clipboard operation
client-side-csv-generator copied to clipboard

IE11 support

Open NeXTs opened this issue 8 years ago • 2 comments

Could you please consider this advice in order to implementation of IE11 support for this library?

NeXTs avatar Oct 04 '16 11:10 NeXTs

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

AlexLibs avatar Oct 05 '16 14:10 AlexLibs

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.

geosp avatar Oct 24 '17 04:10 geosp