Dmitri Zagidulin

Results 267 comments of Dmitri Zagidulin

Walk me through it, though. What is the .eslintrc for, over out of the box standard?

The mocha env part and the warnings about the globals are handled in the standard: globals section of `package.json`. In the case of `testHelper.kb.statementsMatching(undefined, undefined, lit).should.not.be.undefined` considered unused -- which...

To clarify, you should instead add "it" and "describe" to the standard: globals: section of package.json.

(I see what you mean about camelcasing warnings, there are a bunch of snake-cased variables in this library due to it being transpiled from Python.)

@Neur0mante I think the correction is fine, yes (re triple equals)

@webr3 - great work! Any chance you can also add some tests for these?

@melvincarvalho - is this a WebID+RSA spec issue? Or an issue with the particular implementation on Gold? (If it's a spec issue, I want to make sure we also open...

The reason that the node fetch modules dont support file:// urls is because the in-browser native fetch implementations also forbid file urls. (And they do that for security reasons). So,...

The reason that file access was dropped in browser's `fetch` API is the same reason most Node fetch libs don't support it -- it's a serious security risk (with people...