Skip to content
View corepanic64's full-sized avatar
🦀
🦀

Block or report corepanic64

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 250 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. dirnav dirnav Public

    Fast and simple directory navigation in your terminal. Blazingly fast

    Rust 11

  2. useCustomMemo useCustomMemo
    1
    import { useRef } from "react";
    2
    
                  
    3
    type TCallback = () => void | void;
    4
    type TDepsList = readonly unknown[];
    5
    export function useCustomMemo(callback: TCallback, deps: TDepsList) {
  3. useCallback useCallback
    1
    import { useRef } from "react";
    2
    import { hasChanged } from "./hasChanged";
    3
    
                  
    4
    type Callback = () => void | void;
    5
    type Deps = readonly unknown[];
  4. useEffect useEffect
    1
    import { useRef } from "react";
    2
    import { hasChanged } from "./hasChanged";
    3
    
                  
    4
    type Callback = () => void | void;
    5
    type Deps = readonly unknown[];