Skip to content

Commit 768e1bd

Browse files
committed
version bump 0.16.3
- updated SSF to 0.11.2 - XLS write support for `bookSST`
1 parent 5b1440a commit 768e1bd

28 files changed

+1495
-554
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ before_install:
4747
- "npm install -g [email protected]"
4848
- "npm install -g [email protected] voc"
4949
- "npm install blanket"
50-
- "npm install xlsjs"
50+
- "npm install word"
5151
- "npm install coveralls mocha-lcov-reporter"
5252
# note: jsdom 11.x expects node >= 6 but is missing engines.node
5353
- "npm install [email protected]"

README.md

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1713,7 +1713,7 @@ The exported `read` and `readFile` functions accept an options argument:
17131713
for files employing other encryption methods.
17141714
- WTF is mainly for development. By default, the parser will suppress read
17151715
errors on single worksheets, allowing you to read from the worksheets that do
1716-
parse properly. Setting `WTF:1` forces those errors to be thrown.
1716+
parse properly. Setting `WTF:true` forces those errors to be thrown.
17171717

17181718
### Input Type
17191719

@@ -2140,18 +2140,20 @@ For the example sheet:
21402140
As an alternative to the `writeFile` CSV type, `XLSX.utils.sheet_to_csv` also
21412141
produces CSV output. The function takes an options argument:
21422142

2143-
| Option Name | Default | Description |
2144-
| :----------- | :------: | :-------------------------------------------------- |
2145-
|`FS` | `","` | "Field Separator" delimiter between fields |
2146-
|`RS` | `"\n"` | "Record Separator" delimiter between rows |
2147-
|`dateNF` | FMT 14 | Use specified date format in string output |
2148-
|`strip` | false | Remove trailing field separators in each record ** |
2149-
|`blankrows` | true | Include blank lines in the CSV output |
2150-
|`skipHidden` | false | Skips hidden rows/columns in the CSV output |
2151-
|`forceQuotes` | false | Force quotes around fields |
2143+
| Option Name | Default | Description |
2144+
| :----------- | :------: | :------------------------------------------------- |
2145+
|`FS` | `","` | "Field Separator" delimiter between fields |
2146+
|`RS` | `"\n"` | "Record Separator" delimiter between rows |
2147+
|`dateNF` | FMT 14 | Use specified date format in string output |
2148+
|`strip` | false | Remove trailing field separators in each record ** |
2149+
|`blankrows` | true | Include blank lines in the CSV output |
2150+
|`skipHidden` | false | Skips hidden rows/columns in the CSV output |
2151+
|`forceQuotes` | false | Force quotes around fields |
21522152

21532153
- `strip` will remove trailing commas from each line under default `FS/RS`
21542154
- `blankrows` must be set to `false` to skip blank lines.
2155+
- Fields containing the record or field separator will automatically be wrapped
2156+
in double quotes; `forceQuotes` forces all cells to be wrapped in quotes.
21552157

21562158
<details>
21572159
<summary><b>Examples</b> (click to show)</summary>

bits/01_version.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
XLSX.version = '0.16.2';
1+
XLSX.version = '0.16.3';

0 commit comments

Comments
 (0)