Skip to content
View cbracewell's full-sized avatar
  • Deloitte Digital
  • New York

Highlights

  • Pro

Block or report cbracewell

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 Loading

  1. dd-fed-2018 dd-fed-2018 Public

    Multiplayer ThreeJS playground

    JavaScript

  2. nextjs-playground nextjs-playground Public

    TypeScript 1

  3. react-router react-router Public

    Forked from remix-run/react-router

    Declarative routing for React

    JavaScript

  4. Climb DOM for element with class Climb DOM for element with class
    1
    function hasClass(el, cls) {
    2
    	if (el && cls) {
    3
    		if (el.classList.contains(cls)) return true;
    4
    		return false;
    5
    	} else return 'error';
  5. Returns boolean if element has class Returns boolean if element has class
    1
    function hasClass(el, cls) {
    2
    	if (el && cls) {
    3
    		if (el.classList.contains(cls)) return true;
    4
    		return false;
    5
    	} else return 'error';