sheet_to_txt written but not in utils #905
Labels
No Label
DBF
Dates
Defined Names
Features
Formula
HTML
Images
Infrastructure
Integration
International
ODS
Operations
Performance
PivotTables
Pro
Protection
Read Bug
SSF
SYLK
Style
Write Bug
good first issue
No Milestone
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: sheetjs/sheetjs#905
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Been having troubles with the sheet_to_json, but I noticed there was a sheet_to_txt designed, but not in the utils. added in my copy, works perfect for my needs.
If this could be fixed in the online copy, would be cool.
Great package.
It could be useful to expose, but there are likely other ways to do what you want. If you just want a tab-delimited rendering, you can pass the
FS:"\t"
option tosheet_to_csv
. If you want the full behavior, including the codepage conversion, we will accept a PR that adds the export line in theutils
definitionN.B.:
sheet_to_txt
is directly exposed in the genericwrite
andwriteFile
functions using thebookType:"txt"
option. The specific sheet is controlled by thesheet
parameter.