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

Block or report dschnare

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. purejs purejs Public

    The pure JavaScript API for constructors, mixins and type testing.

    JavaScript 14 2

  2. react-slot react-slot Public

    Slot-based content distribution component for React

    JavaScript 41 1

  3. anna anna Public

    Anna is a file type agnostic static analyzer

    JavaScript 1

  4. gommitjs gommitjs Public

    A Nodejs wrapper for the gommit command line tool.

    JavaScript 1

  5. Simple service container Simple service container
    1
    /**
    2
     * A simple service container.
    3
     *
    4
     * @example
    5
     * const app = express()
  6. JSONPointer and walkObject APIs JSONPointer and walkObject APIs
    1
    const walkObject = (function () {
    2
      function walkObjectRec (obj, visit, { pointer = '', key = '', visited = new WeakMap(), parent = undefined } = {}) {
    3
        if (obj === null || obj === undefined) {
    4
          visit(obj, key, pointer, parent)
    5
        } else if (typeof obj === 'object') {