Martin Heidegger
Martin Heidegger
Partials are nice but it is difficult to pass in a huge block of html to a partial. Say we have this template 'test.ect' ``` ``` then it would be...
There are command line tools for use iwth node/npm bundled with ECT but they only allow to compile to a template function not directly to a html file. It would...
To deduplicate dependencies of sibling packages.
I understand that timestamps are not-reliable, but going through the append-log by hand (if the user-interface is provided), doesn't give you a hint when a change happened. A simple option...
In following code there is only one branch written out but the code actually works as two branches. ``` function foo(bar) { var result; if (bar == true) { result...
Right now a boolean operator is treated as one operation. ``` a === b; ``` So if there is some code that looks like this: ``` assert(a === b); ```...
Its nice to have with `fromBytes` and `toBytes` utils to interact with a data-stream https://github.com/dcodeIO/long.js/blob/9448e61647f884144da26e5c13b503d586ad644b/src/long.js#L1329 However it would be useful if someone using this API wouldn't need to splice the...
I tried signing up using the ctznry.vercel app to my own server (ctzn.leichtgewicht.at). When asked for the Display Name I entered it with a space "Martin Heidegger" and the following...
Node 15 added `AbortController` and `AbortSignal` to the `global` scope. This PR adds a `./node.js` file that will use node.js globals if available and else falls back to the shim....
The typescript definitions mention that the package exports `AbortController` as object https://github.com/mysticatea/abort-controller/blob/a935d38e09eb95d6b633a8c42fcceec9969e7b05/dist/abort-controller.d.ts#L43 This PR makes sure that this is also the case for commonjs implementations.