Skip to content
View Inalegwu's full-sized avatar
💜
Exploring
💜
Exploring

Block or report Inalegwu

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
Inalegwu/README.md
  • 👋 Hi, I’m Inalegwu
  • 💡 Mobile Developer Working with React Native
  • 💞️ I’m looking to collaborate on React Native Based Projects
  • 📫 How to reach me email :ikwueinalegwu@gmail.com

Pinned Loading

  1. Nova Nova Public

    Sleek and Modern Comic Book Reader, for the Digital Comic Enthusiast

    TypeScript 5

  2. EdigaOyaRaysOfHope EdigaOyaRaysOfHope Public

    Ediga-Oya Rays Of Hope Marketing Website/Landing Page

    TypeScript

  3. Apollo Apollo Public

    Cross Platform File Sharing Solution

    TypeScript

  4. MakeSafeFunc MakeSafeFunc Public

    Wrapper function for neverthrow to turn unsafe functions into result types

    TypeScript 1

  5. Typed EventEmitter to ensure You're ... Typed EventEmitter to ensure You're never listening to events that don't exist
    1
    import EventEmitter from "node:events";
    2
    
                  
    3
    export class TypedEventEmitter<TEvents extends Record<string, unknown>> {
    4
      private emitter = new EventEmitter().setMaxListeners(15);
    5