Comparing version 0.1.0 to 0.1.1
{ | ||
"name": "create-csv", | ||
"version": "0.1.0", | ||
"version": "0.1.1", | ||
"description": "A csv generator produces random data", | ||
@@ -5,0 +5,0 @@ "main": "generator.js", |
@@ -9,3 +9,3 @@ # create-csv | ||
The above command will generate a file named 'demo' under same directory with generator.js. The file will contains two columns (namely `column 1` and `column 2`), The first column will contain 1000 string data, and the second will contain 500 number data. The total data point will be `1000 * 2 = 2000`, with the missing ones filled with `null`. | ||
The above command will generate a file named 'demo' under current directory. The file will contains two columns (namely `column 1` and `column 2`), The first column will contain 1000 string data, and the second will contain 500 number data. The total data point will be `1000 * 2 = 2000`, with the missing ones filled with `null`. | ||
@@ -12,0 +12,0 @@ The same arguments will *always* generate the same csv file with pseudo-random data. You can optionally use `seed` option to control the random outcomes. |
5542