Skip to content
View sklinov's full-sized avatar
Block or Report

Block or report sklinov

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

  1. color-from-string color-from-string Public

    Convert string to HEX color code

    JavaScript 2

  2. react-wasm react-wasm Public

    A simple boilerplate to start using WASM in React

    2

  3. virtualization-demo virtualization-demo Public

    Virtualization demo for FrontendConf 2021

    TypeScript 2

  4. isType typeguard isType typeguard
    1
    /**
    2
     * 
    3
     * @param {any} item item you want to typecheck
    4
     * @param {(keyof T)[]} keys keys that should be present in the type and not be undefined
    5
     * @returns {boolean} Later in code item is of T type on success
  5. Bitwise RGB to HEX conversion Bitwise RGB to HEX conversion
    1
    /* 
    2
     Picked from https://blog.logrocket.com/interesting-use-cases-for-javascript-bitwise-operators/
    3
    **/
    4
    
                  
    5
    function rgbToHex ([red = 0, green = 0, blue = 0] = []) {