Michael J. Ryan
Michael J. Ryan
Would be really nice if this could be published to Flathub at the very least, though not sure how well it will work as a flatpack application.
For better browser compatibility, it would be nice to have support for `navigator.language` and `navigator.languages` with defaults based on the OS environment. Specifically to better support Intl.* parameters in practice.
Fixes execution so it can work in windows and *nix
``` function date2obj(value) { var parts = ((value || value === 0) ? new Date(value) : new Date()).toJSON().split(/\D/); return { year: parts.shift(), month: parts.shift(), day: parts.shift(), hour: parts.shift(), minute: parts.shift(),...
Support code splitting on dynamic import() statements, and additionally split/join on shared bundles for shared dependency models.
It would be nice to include the presets/fills necessary to bring this up to an equivalent to `babel-preset-env` in terms of coverage, so that this can be used with, for...
Would be cool to have an "autoDecodeWithFallback" method... ``` iconv.autoDecode(buffer, [fallbackEncoding = 'win1252']) ``` That will check for a BOM and auto-decode, then try UTF8 with some checking logic... here's...
Could possibly get several targets including Windows via Github actions, with build targets. May be able to do a PR, if you'd be interested in that? Maybe windows/x64, linux/x86_64, linux/arm7-32bit,...
Would suggest adding metrics for comparison against other validation frameworks (Joi for example) to see how much overhead this adds vs. no validation (just json stringify/parse) or input validation including...
I'd suggest disabling the cookie storage option by default, making it opt-in. - amount of storage for cookies is more limited, - every cookie set is sent to the server...