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

Block or report jrc03c

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

    a web worker helper tool

    JavaScript 2 2

  2. Download the contents of an HTML5 ca... Download the contents of an HTML5 canvas as an image
    1
    function downloadCanvasAsImage(canvas, filename){
    2
      let a = document.createElement("a")
    3
      a.href = canvas.toDataURL()
    4
      a.download = filename
    5
      a.dispatchEvent(new MouseEvent("click"))
  3. js-frills js-frills Public

    little js add-ons

    JavaScript 1

  4. js-math-tools js-math-tools Public

    JavaScript 1 2

  5. create-high-dpi-canvas create-high-dpi-canvas Public

    a helper function to create HTML5 canvases that are compatible with high-DPI screens

    JavaScript 1