Skip to content
View flut1's full-sized avatar
  • Amsterdam, Netherlands
Block or Report

Block or report flut1

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
flut1/README.md

Pinned

  1. mediamonks/seng-event mediamonks/seng-event Public

    Provides Classes and utilities for dispatching and listening to events.

    TypeScript 6

  2. mediamonks/react-redux-component-init mediamonks/react-redux-component-init Public

    A library to manage react component initialization in isomorphic applications using Redux.js

    JavaScript 6 1

  3. hot-callback-loader hot-callback-loader Public

    Webpack loader that wraps a module in a callback that executes whenever the module hot updates

    JavaScript 1

  4. discogs-data-tools discogs-data-tools Public

    A collection of utils to manage Discogs monthly data dumps

    JavaScript 16 4

  5. mediamonks/git-housekeeper mediamonks/git-housekeeper Public

    A housekeeping utility to clean up your git repository

    JavaScript 15 1

  6. Common TypeScript utility types Common TypeScript utility types
    1
    /**
    2
     * Extracts all keys of object T that have a value assignable to V
    3
     */
    4
    type KeysOfType<T, V> = {
    5
        [K in keyof T]: T[K] extends V ? K : never