Skip to content
View jeystaats's full-sized avatar
🏠
Working from home
🏠
Working from home
Block or Report

Block or report jeystaats

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

Pinned Loading

  1. Turn a string ( username e.g ) into ... Turn a string ( username e.g ) into a RGB ( 15e5de ) . Only put the hashtag in front of it.
    1
    // Turn a string ( like a username , into a RGB code (15e5de) , you can use this for styling purposes per user in chat examples
    2
    hashCode(str) { // java String#hashCode
    3
                    var hash = 0;
    4
                    for (var i = 0; i < str.length; i++) {
    5
                       hash = str.charCodeAt(i) + ((hash << 5) - hash);