Skip to content
View mxmason's full-sized avatar

Sponsoring

@tatianamac

Organizations

@a11yproject
Block or Report

Block or report mxmason

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. soFetch.js soFetch.js
    1
    /**
    2
    * A small lib for fetching with query parameters.
    3
    * CREDIT: discussion in this issue thread: https://github.com/github/fetch/issues/256
    4
    * @param {String} url
    5
    * @param {Object} [opts={}] The init options for the fetch request
  2. cryptoUUID.js cryptoUUID.js
    1
    // Using the web crypto API is a quick way to get a pseudo-random number.
    2
    // It's is experimental in IE11 and namespaced behind a prefix.
    3
    var crypto = window.crypto || window.msCrypto;
    4
    
                  
    5
    // Generates a uuidv4-compliant string
  3. getFocusableChildren.js getFocusableChildren.js
    1
    const FOCUSABLE_ELEMENTS = `
    2
    	[contenteditable]:not([tabindex^="-"]):not([inert]):not([aria-hidden="true"]),
    3
    	[tabindex]:not([tabindex^="-"]):not([inert]):not([aria-hidden="true"])
    4
    	a[href]:not([tabindex^="-"]):not([inert]):not([aria-hidden="true"]),
    5
    	area[href]:not([tabindex^="-"]):not([inert]):not([aria-hidden="true"]),