@@ -6,6 +6,7 @@ import type {
6
6
SpreadsheetOptions ,
7
7
SpreadsheetType ,
8
8
} from './types'
9
+ import { Buffer } from 'node:buffer'
9
10
10
11
export const spreadsheet : Spreadsheet = Object . assign (
11
12
( data : Content ) => ( {
@@ -59,7 +60,8 @@ export const spreadsheet: Spreadsheet = Object.assign(
59
60
store : async ( { content } : SpreadsheetContent , path : string ) : Promise < void > => {
60
61
try {
61
62
await Bun . write ( path , content )
62
- } catch ( error ) {
63
+ }
64
+ catch ( error ) {
63
65
throw new Error ( `Failed to store spreadsheet: ${ ( error as Error ) . message } ` )
64
66
}
65
67
} ,
@@ -107,7 +109,7 @@ export function generateCSVContent(content: Content): string {
107
109
const rows = [ content . headings , ...content . data ]
108
110
109
111
return rows
110
- . map ( ( row ) =>
112
+ . map ( row =>
111
113
row
112
114
. map ( ( cell ) => {
113
115
const cellString = String ( cell )
@@ -165,7 +167,7 @@ export function generateExcelContent(content: Content): Uint8Array {
165
167
<Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/worksheet" Target="worksheets/sheet1.xml"/>
166
168
</Relationships>`
167
169
168
- const files : Array < { name : string ; content : Uint8Array } > = [
170
+ const files : Array < { name : string , content : Uint8Array } > = [
169
171
{ name : '[Content_Types].xml' , content : new Uint8Array ( Buffer . from ( contentTypes ) ) } ,
170
172
{ name : '_rels/.rels' , content : new Uint8Array ( Buffer . from ( rels ) ) } ,
171
173
{ name : 'xl/workbook.xml' , content : workbook } ,
@@ -177,7 +179,7 @@ export function generateExcelContent(content: Content): Uint8Array {
177
179
const header = new Uint8Array ( 30 + file . name . length )
178
180
const headerView = new DataView ( header . buffer )
179
181
180
- headerView . setUint32 ( 0 , 0x04034b50 , true ) // 'PK\x03\x04'
182
+ headerView . setUint32 ( 0 , 0x04034B50 , true ) // 'PK\x03\x04'
181
183
headerView . setUint32 ( 4 , 0x0008 , true )
182
184
headerView . setUint32 ( 18 , compressedContent . length , true )
183
185
headerView . setUint32 ( 22 , file . content . length , true )
@@ -193,7 +195,7 @@ export function generateExcelContent(content: Content): Uint8Array {
193
195
const header = new Uint8Array ( 46 + file . name . length )
194
196
const headerView = new DataView ( header . buffer )
195
197
196
- headerView . setUint32 ( 0 , 0x02014b50 , true ) // 'PK\x01\x02'
198
+ headerView . setUint32 ( 0 , 0x02014B50 , true ) // 'PK\x01\x02'
197
199
headerView . setUint16 ( 4 , 0x0014 , true )
198
200
headerView . setUint16 ( 6 , 0x0008 , true )
199
201
headerView . setUint32 ( 8 , 0x0008 , true )
@@ -213,10 +215,10 @@ export function generateExcelContent(content: Content): Uint8Array {
213
215
214
216
const endOfCentralDirectory = new Uint8Array ( 22 )
215
217
216
- const totalSize =
217
- zipData . reduce ( ( acc , { header, compressedContent } ) => acc + header . length + compressedContent . length , 0 ) +
218
- centralDirectory . reduce ( ( acc , header ) => acc + header . length , 0 ) +
219
- endOfCentralDirectory . length
218
+ const totalSize
219
+ = zipData . reduce ( ( acc , { header, compressedContent } ) => acc + header . length + compressedContent . length , 0 )
220
+ + centralDirectory . reduce ( ( acc , header ) => acc + header . length , 0 )
221
+ + endOfCentralDirectory . length
220
222
221
223
// Create a single Uint8Array with the total size
222
224
const result = new Uint8Array ( totalSize )
0 commit comments