Skip to content
View jimmybatuhan's full-sized avatar
🎯
Focusing
🎯
Focusing

Block or report jimmybatuhan

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. Compare a name to a collection of na... Compare a name to a collection of names, returns the percentage of each names
    1
    let name = 'James Bond';
    2
    let names = [
    3
        'Goerge Mallory', 
    4
        'Marie Curry',
    5
        'Tom Yorke',
  2. HandleBar HandleBar
    1
    let handlebar = function(string, handlers){
    2
        if(string.match(/({{).*?(}})/g).length){
    3
            Object.keys(handlers).forEach( key => { string = string.replace(new RegExp("({{)"+key+"(}})"), handlers[key]); });
    4
        };
    5
        return string;
  3. paymongo-api paymongo-api Public

    Paymongo API Integration

    JavaScript 1

  4. axios-docs axios-docs Public

    Forked from axios/axios-docs

    Official documentation for the axios HTTP library

    JavaScript