forked from sheetjs/sheetjs
version bump 0.2.7: more cleanup
This commit is contained in:
parent
247fd22c06
commit
8c8d855bb6
12
README.md
12
README.md
@ -19,8 +19,8 @@ In the browser:
|
||||
|
||||
## Tested Environments
|
||||
|
||||
- Node >= 0.8.14 (untested in versions before 0.8.14)
|
||||
- IE 6/7/8/9/10 using Base64 mode
|
||||
- Node 0.8.14, 0.10.1
|
||||
- IE 6/7/8/9/10 using Base64 mode (IE10 using HTML5 mode)
|
||||
- FF 18 using Base64 or HTML5 mode
|
||||
- Chrome 24 using Base64 or HTML5 mode
|
||||
|
||||
@ -41,7 +41,7 @@ Note that IE does not support HTML5 File API, so the base64 mode is provided for
|
||||
`.Sheets[sheetname]` returns a data structure representing the sheet. Each key
|
||||
that does not start with `!` corresponds to a cell (using `A-1` notation).
|
||||
|
||||
`.Sheets[sheetname][address].v` returns the value of the cell and `.Sheets[sheetname][address].t` returns the type of the cell (constrained to the enumeration `ST_CellType` as documented in page 4215 of ISO/IEC 29500-1:2012(E) )
|
||||
`.Sheets[sheetname][address].v` returns the value of the specified cell and `.Sheets[sheetname][address].t` returns the type of the cell (constrained to the enumeration `ST_CellType` as documented in page 4215 of ISO/IEC 29500-1:2012(E) )
|
||||
|
||||
Simple usage:
|
||||
|
||||
@ -55,6 +55,12 @@ Simple usage:
|
||||
}
|
||||
});
|
||||
|
||||
For more details:
|
||||
|
||||
- `bin/xlsx2csv.njs` is a tool for node
|
||||
- `index.html` is the live demo
|
||||
- `bits/90_utils.js` contains the logic for generating CSV and JSON from sheets
|
||||
|
||||
## License
|
||||
|
||||
Please consult the attached LICENSE file for details. All rights not explicitly granted by the MIT license are reserved by the Original Author.
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "xlsx",
|
||||
"version": "0.2.6",
|
||||
"version": "0.2.7",
|
||||
"author": "Niggler",
|
||||
"description": "(one day) a full-featured XLSX parser and writer. For now, primitive parser",
|
||||
"keywords": [
|
||||
@ -17,7 +17,5 @@
|
||||
"bugs": {
|
||||
"url": "https://github.com/Niggler/js-xlsx/issues"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=0.8"
|
||||
}
|
||||
"engines": { "node": ">=0.6" }
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user