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

Block or report mfalade

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
mfalade/README.md

Pinned

  1. github-to-jira github-to-jira Public

    A simple Chrome extension that allows you to go from a Github pull request to the relevant Jira ticket in a click

    JavaScript 2

  2. github-repo-search github-repo-search Public

    A demo React app that leverages OAuth to search for private and public Github repositories. What better way to see how Github OAuth works that to implement a dummy project?

    JavaScript 1

  3. mfalade.github.io mfalade.github.io Public

    My portfolio website

    JavaScript 2

  4. A Javascript implementation of the L... A Javascript implementation of the Luhn Algorithm used for validating credit card numbers.
    1
    const isCardNumberValid = cardNumber => {
    2
      const normalizedStr = cardNumber.replace(/\s/g, '');
    3
      const tokens = Array.from(normalizedStr).map(Number);
    4
      const checkDigit = tokens.pop();
    5