Erik Christensen
Erik Christensen
Just saw this KEEP recently and figured I'd weigh in as I've been working on a pure Kotlin time library that draws heavily from java.time. 1. While a floating point...
Android Studio 4.0's java.time library desugaring now works out of the box using the JVM variant. The current implementation is less than ideal and it may be good to split...
Would still like to restructure the core project to add an Android variant, making it a possible to handle some of the JVM/Android API disparities better. I think this might...
First off, I just want to say that it's really cool to see someone taking a stab at JS support. Definitely an ambitious PR! 🙂 I did some investigation into...
Good point on `Intl.Locale`. It might be fine to just require anyone using `Locale` to use a polyfill like https://www.npmjs.com/package/intl when the support isn't there. But it might make sense...
Being able to get a list of available time zones isn't important, really. It's more informational and it's fine if `availableRegionIds` just returns an empty set. Even on iOS, it...
This seems to be a good start! The transitions are probably a pain to reconstruct. I'll try to go through the code more closely soon and provide some better feedback.
Without really digging in and trying to write some code, I'm not sure I can provide much guidance on how to figure out the transitions beyond my earlier [comment]( https://github.com/erikc5000/island-time/pull/78#issuecomment-642115409)....
An effort is add formatting support is well underway. It's a pretty big change and will break the existing parser functionality to some extent.
Just include it in your module's list of providers. For example: ```typescript @Module({ controllers: [DogsController], providers: [DogsService, DogsRepository, dogsCollectionProvider], imports: [ MongoModule.forRootAsync({ imports: [ConfigModule], useFactory: async (configService: ConfigService) => ({...