Nate River
Nate River
It would be great if we could throw exception from rust.. ```rs #[deno_bindgen] pub fn div(a: i32,b: i32)-> i32 { if b==0 { deno_bindgen::throw("cannot divide by zero") } else {...
@littledivy When is it coming? I've been waiting for a while for release 9.0... Is there any work going on? I've been out for a while as I had board...
TypedArrays are very helpful in certain situations... for example a `Vec` or a Box could be turned into an `Int32Array` which is very helpful ## Rust ```rs #[deno_bindgen] pub fn...
I don't even need fo explain the bug..xd 
Supporting any type of pointer would be very great..
Supporting unsafe functions for `deno_bindgen` would be so great as it'll eliminate the need to use an `unsafe` block when using pointers which is pretty annoying... ## Now ```rs #[deno_bindgen]...
`deno_bindgen` doesn't allow bool for some reason.. we need to use `u8` as return-type or parameters and then cast them, which is pretty annoying.. adding `bool` to `deno_bindgen`'s native-type would...
I'm getting this error with a exit code of 1 when I run the program on linux.. On windows it seems fine though.. ```sh Gtk-WARNING **: Locale not supported by...
I need to obtain the reference count of an object.. I'm trying to make a callback function invoke on ref-count change.. I just need to know where the javascript objects...
It's just a silly question.. I wonder whether I can use inquire in my tokio project