karikera

Results 14 issues of karikera

TS bugfix, export top-level indexer `export default cptable` does not equal with `module.exports = cptable`, it will export like `module.exports["default"] = cptable`

`export defualt X` is `exports['default'] = X` `export defualt X` is not `module.exports = X` `import X from 'x'` is `const X = require('x')['default']` `import X from 'x'` is not...

It seems MySQL store wait for a little to get a session. It makes loss messages Reproduction: 1. use a session with MySQL store, 2. store something to the session...

I tried to download and unzip a bunch of files with a file filter. ```ts const archive = await unzipper.Open.file(zipfile); for (const file of archive.files) { if (file.type == 'Directory')...

I want to keep original files. I opened an archive with `const archive = await unzipper.Open.url(...)` I tried to replace `archive.files` and called `archive.extract({...})` but nothing happened how can I...

### Describe the Bug memory access out of bounds on allocating large structs. runtime error [email protected] ### Steps to Reproduce ```rs #[wasm_bindgen] pub struct FoobarPass { buf:[i32; 1024*512], } #[wasm_bindgen]...

bug

I'm currently not working on it! It's hard to fix new issue!

* Source ```cxx JsPointerToString(NULL, 0, &str); ``` * Expected str = empty string * Actual failed and returns JsErrorNullArgument I think this should be possible

help wanted
good first issue
APIs

on panic, it's hard to determine where the NaN values are. I think this check should be done in the drawer's methods.

When drawing text that updates every frame, is it necessary to recreate the glyphon::Buffer each frame?