Skip to content
View jpitchardu's full-sized avatar
🕶️
🕶️

Block or report jpitchardu

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

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

Report abuse

Pinned Loading

  1. fndi.js fndi.js Public

    Simple, functional, DI library for JS

    JavaScript 2

  2. jp.tamagotchi.engine.csharp jp.tamagotchi.engine.csharp Public

  3. jp.tamagotchi.engine.java jp.tamagotchi.engine.java Public

    Kotlin

  4. jp.tamagotchi.engine.ts jp.tamagotchi.engine.ts Public

    TypeScript

  5. jp.tamagotchi.rest jp.tamagotchi.rest Public

    RESTful Service for the Distributed Systems Final Project

    C#

  6. Optional API javascript Optional API javascript
    1
    function optionalAccess(obj, path, def) {
    2
      const propNames = path.replace(/\]|\)/, "").split(/\.|\[|\(/);
    3
    
                  
    4
      return propNames.reduce((acc, prop) => acc[prop] || def, obj);
    5
    }