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

Block or report zakariamouhid

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. tiptap-build tiptap-build Public

    This is a build of tiptap, tiptap-utils, tiptap-commands and tiptap-extensions to use from cdn

    HTML 3

  2. icons-sets icons-sets Public

    sets of free icons (feather, carbon, clarity, fontawsome) to use via cdn

    JavaScript

  3. nearley-playground nearley-playground Public

    Forked from bijection/nearley-playground

    ⛹ Write Grammars for the Nearley Parser!

    JavaScript

  4. simple jsonp that supports browser c... simple jsonp that supports browser caching
    1
    const fetchJSONP = ((callback, callbackName) => {
    2
      const map = new WeakMap();
    3
      window[callbackName] = json => {
    4
        const script = document.currentScript;
    5
        const fn = map.get(script);