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

Block or report FlameWolf

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. quip-api-v2 quip-api-v2 Public

    TypeScript 1

  2. formzilla formzilla Public

    JavaScript 8 2

  3. jsCrop jsCrop Public

    A simple, plain JavaScript library to crop images.

    JavaScript 1 1

  4. css-filters-playground css-filters-playground Public

    TypeScript

  5. Performance difference between inser... Performance difference between insertAdjacentHTML and appendChild
    1
    `Element.prototype.insertAdjacentHTML` can be up to 4 times slower than `Node.prototype.appendChild`. So use the latter wherever possible for best performance.
  6. Vanilla-JS-equivalent-for-jQuery.rep... Vanilla-JS-equivalent-for-jQuery.replaceWith.js
    1
    Element.prototype.replaceWith = function(html) { this.insertAdjacentHTML("afterend", html); this.remove(); };