Jeff Barnes
Jeff Barnes
From Angular 13: Processing legacy "View Engine" libraries: - @angular-slider/ngx-slider [es2015/esm2015] (https://github.com/angular-slider/ngx-slider.git) Encourage the library authors to publish an Ivy distribution.
Trying to get MS Graph OData connector working. Getting Type with name "GraphEntityInput" does not exists when running mesh build Seems the example is hitting the same thing. I'm guessing...
This doesn't do anything: ```typescript Cron('* * * * * *', { timezone: 'America/Anchorage' }, () => { console.log('test') }) ``` This works: ```typescript Cron('* * * * * *',...
Is it possible to update the npm release? The current version is unusable without #75
From https://github.com/c-trimm/moment-recur/issues/89 Could add some code to short circuit a rule that will never match.
Provide compiled ES6 modules. ES6 modules will likely be complied without polyfills. Assumption is that anyone using ES6 modules either is using a newer runtime, or is capable of providing...
Add hour/minute/second/millisecond recurrence rules Timezones and Daylight Saving may become a problem.
Use the UTC mode of the start date to determine what format the return moments should be in.
Version: Deno 2.0.2 Example straight from the docs (https://docs.deno.com/api/node/timers/promises/~/setInterval) ```typescript import { setInterval, } from 'node:timers/promises'; const interval = 100; for await (const startTime of setInterval(interval, Date.now())) { const now...