RELEASE 🚚 1.0,6

This commit is contained in:
abdennour 2017-04-13 21:22:27 +03:00
commit 67c86464e3
5 changed files with 4227 additions and 3 deletions

4221
cdn/react-csv-1.0.6.js Normal file

File diff suppressed because it is too large Load diff

3
cdn/react-csv-1.0.6.min.js vendored Normal file

File diff suppressed because one or more lines are too long

View file

@ -220,7 +220,7 @@ var toCSV = exports.toCSV = function toCSV(data, headers, separator) {
};
var buildURI = exports.buildURI = function buildURI(data, headers, separator) {
return encodeURI('data:text/csv;charset=utf-8,' + toCSV(data, headers, separator));
return encodeURI('data:text/csv;charset=utf-8,\uFEFF,' + toCSV(data, headers, separator));
};
},{}],5:[function(require,module,exports){
'use strict';

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
{
"name": "react-csv",
"version": "1.0.5",
"version": "1.0.6",
"description": "Build CSV files on the fly basing on Array/literal object of data ",
"main": "index.js",
"jsnext:main": "src/index.js",