Eric P Sheets
Eric P Sheets
For the test suite, can you share an example file? That code block was spun out of the `make_sector_list` function, which used the `chkd` variable to note if we've already...
On performance: none of our tests or workflows deal with hundreds of files, let alone thousands of files. The function that sees the most write activity [reshapes XLS VBA blobs...
The primary source files are the `bits` files, which are [concatenated in a build step](https://github.com/SheetJS/js-cfb/blob/master/Makefile#L27). The approach is a bit weird given what people use in 2018, but if you...
@rossj we just pushed 1.0.6 with the first part guarded behind the option `unsafe:true`: ```js CFB.utils.cfb_add(cfb, path, content, {unsafe:true}); ``` Runkit unfortunately puts a memory limit, but https://runkit.com/5acb0cf21599f20012a3e001/5acb0cf2aeee9400120ba682 should demonstrate...
@rossj Before a new release is cut, is there any other change you recommend?
Almost perfect 😆 To set the max col width for column B, you would expect something like this work: ```js table.maxColWidth(10, true); // override and set the default width to...
It's ok to keep the bundle-optimizing system on during development. What would be helpful is some sort of hint that the dev server should be restarted. When the error occurs,...
There are two interesting (and currently unsupported) cases with "tarballs": 1) specifying a URL for the tarball: ```bash cat
@binary-koan you are describing #1016 . It works in 0.1.5 but regressed afterwards. Using 0.1.5 on Intel Mac: ```bash % curl -LO https://github.com/oven-sh/bun/releases/download/bun-v0.1.5/bun-darwin-x64.zip % unzip bun-darwin-x64.zip % cat
Very cool, thanks for sharing! [Server demos like the `express` example](https://docs.sheetjs.com/docs/demos/server#express) currently recommend opening the page with a browser (or using curl to upload data manually) Is there a reason...