From 677f5a16e072fcdae8c5752fa4a6fd293ec6d002 Mon Sep 17 00:00:00 2001 From: Matthew Holt Date: Mon, 22 Dec 2014 22:04:51 -0700 Subject: [PATCH] Clarified behavior when field names overlap (closes #129) --- docs.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs.html b/docs.html index dac87b9..8fd305b 100644 --- a/docs.html +++ b/docs.html @@ -380,7 +380,7 @@ var csv = Papa.unparse({ header - If true, the first row of parsed data will be interpreted as field names. Fields will be returned in the meta, and each row will be an object of data keyed by field name. If false, the parser simply returns an array of arrays, including the first row. + If true, the first row of parsed data will be interpreted as field names. An array of field names will be returned in meta, and each row of data will be an object of values keyed by field name instead of a simple array. Warning: Duplicate field names will overwrite values in previous fields having the same name.