Rhys Evans
Rhys Evans
From the docs: > .mjs files are limited to basic functionality without support for esm options. I'm [converting a package](https://github.com/wheresrhys/fetch-mock/pull/471/files) to esm. Having converted all the src files to esm...
I'm not sure what's causing the issue, but copying here in case it's a problem with this library and not a regression in the sdk https://github.com/aws/aws-sdk-js/issues/2469
Eve references the global scope using `this`. But in browserify `this` doesn't refer to `window` https://github.com/substack/node-browserify/issues/372, so eve isn't attached to the global object. Could be fixed by passing in...
I'm including nib/vendor in my stylesheets The problem I have is that one of my mixins writes a background-size rule, which then conflicts with nib as, I presume, it tries...
Hi, Would you be open to a PR implementing the ability to throttle multiple functions with the same throat instance. Something like ``` myLimiter = throat(2); lib.method1 = myLimiter.wrap(lib.method1) lib.method2...
I recently got a bit confused when installing an old version of npm for a project that needs it. 1. I didn't know prior to this that volta had taken...
**Is your feature request related to a problem? Please describe.** Many of our enums are ordered, e.g. lifecycleStage: PreProduction, Production, Deprecated, Decommissioned However these are not in alphabetical order so...
**Is your feature request related to a problem? Please describe.** I would like to filter based on the value of count for a filtered aggregate e.g. `dependenciesAggregate (where:{ ... })`...
So that no warnings are produced for any non-mocked module. maybe `.registerAllowable()` should allow all modules if no module names are passed to it?