From a5ec21f07eb1e315b9d8e6a54dc01944fe5f915f Mon Sep 17 00:00:00 2001 From: Havock94 Date: Fri, 27 May 2016 17:14:27 +0200 Subject: [PATCH] docs(exporter): Update exporter.js (#5300) Added separator parameter documentation in the formatAsCsv function --- src/features/exporter/js/exporter.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/features/exporter/js/exporter.js b/src/features/exporter/js/exporter.js index d14408f2b9..3f8ab1e9d7 100755 --- a/src/features/exporter/js/exporter.js +++ b/src/features/exporter/js/exporter.js @@ -821,6 +821,7 @@ * where each header is an object with name, width and maybe alignment * @param {array} exportData an array of rows, where each row is * an array of column data + * @param {string} separator a string that represents the separator to be used in the csv file * @returns {string} csv the formatted csv as a string */ formatAsCsv: function (exportColumnHeaders, exportData, separator) {