flut1 - Overview

View flut1's full-sized avatar

Floris Bernard flut1

  • Amsterdam, Netherlands

Block or report flut1

Pinned Loading

  1. Provides Classes and utilities for dispatching and listening to events.

    TypeScript 6

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

    JavaScript 6 1

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

    JavaScript 1

  4. A collection of utils to manage Discogs monthly data dumps

    JavaScript 22 4

  5. A housekeeping utility to clean up your git repository

    JavaScript 16 2

  6. 2

     * Extracts all keys of object T that have a value assignable to V

    4

    type KeysOfType<T, V> = {

    5

        [K in keyof T]: T[K] extends V ? K : never