-
I have code that does this:
```
var d = new Date('9/8/18');
// Do something with d.
```
However, Duktape cannot parse this date correctly and creates an invalid `Date` object.
I saw this i…
-
This would be like the "Just My Code" feature in Visual Studio, when performing a Step Into operation, have the debugger automatically step over functions without local source available. This would p…
-
Hi! We met an ASAN UAF report while testing the APIs, the POC is:
```
#include
#include
#include
#include "duktape.h"
duk_context* r;
int main(void)
{
r = duk_create_heap_default();
…
-
I install go 1.5.3 by gvm recently. Before this i used homebrew to install go.
After switch to gvm, gvp can't work correctly. `go get` did not download the package in first directory listed from GOPAT…
-
Regarding this idea:
https://github.com/nkolban/duktape-esp32/issues/24#issuecomment-364676071
Since we switched to using the esp-idf's spiffs implementation it is somewhat complex creating a virt…
-
The issue https://github.com/neonious/lowjs/issues/79 is actually a Duktape issue. So copying it here:
/\033/.test("\033")
=>
SyntaxError: invalid regexp escape (line 1)
[...]
\033 is…
-
-
Hi Neil, decided to take a look at this finally.
Managed to get as far as being able to bring the IDE up on:
http://192.168.0.179:8000/web/ide.html
had to use nmap to find the port, but eventual…
-
Currently e.g. `duk_get_string()` and `duk_get_buffer()` only operate on plain string/buffer values. If they're used with a String or Duktape.Buffer object they'll return NULL and zero length.
It mig…
-
Hi,
I'm wondering if it'd be possible to expose API for setting pre/post function call hooks that'd allow to e.g. integrate a function-based profiler to the application. I know LUA already has such A…