ThibaultGerrier
ThibaultGerrier
Hi! The solutions from @zlangbert and @rochdev do not work for me. While `tracer.scope().active()` will return a span in non-nestjs environments, that span is always the same. That span will...
Tried to get a closer look/understanding into how prisma works: (I am very new to prisma, so I might be wrong...) The sql queries themselves are generated inside the rust...
Hi, yes I think passing an object like that is a good and simple solution. @vemonet could you create a PR with your changes?
Unfortunately this doesn't work with array destructuring: ```javascript const obj = { 0: 'foo', 1: 'bar, } const [first, second] = obj; // throws error ``` which was what I...
Yes, I guess that's true, iterating with for..of would only give the numbered entries, but Object.(keys|values|entries)(arg) would return the values duplicated. Not sure if this is a big issue or...
Sounds good to me! Ill try out the changes and merge your PR :+1:
Alright merged and deployed with [email protected] Thanks @vemonet !
Unfortunately I cannot do anything about `jsonld` as the latest version is already being used. But I updated all outdated packages with v1.12.1 `npm audit` reports 0 vulnerabilities now.
Hi! Currently there is no build-in yarrrml support. (Although I could see adding it in the future, as I am basically only writing yarrrml) You should be able to use...
It is possible to run rocktrml&yarrrml-parser in the browser, that is what we do here: https://github.com/semantifyit/rml-editor You can see the result of that project hosted here: https://semantifyit.github.io/rml/ The `rocketrml.parseFile` function...