Skip to content
View jarvisluong's full-sized avatar
:octocat:
Never AWOL
:octocat:
Never AWOL

Organizations

@18yolol @react-navigation
Block or Report

Block or report jarvisluong

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. react-navigation/react-navigation react-navigation/react-navigation Public

    Routing and navigation for your React Native apps

    TypeScript 23.3k 5k

  2. jwasham/coding-interview-university jwasham/coding-interview-university Public

    A complete computer science study plan to become a software engineer.

    290k 73.6k

  3. techy-novice techy-novice Public

    This is my personal blog

    JavaScript 7 34

  4. Converting standard Vietnamese Chara... Converting standard Vietnamese Characters to non-accent ones (Chuyển đổi ký tự tiếng Việt sang không dấu). Example: hải -> hai
    1
    // This function converts the string to lowercase, then perform the conversion
    2
    function toLowerCaseNonAccentVietnamese(str) {
    3
        str = str.toLowerCase();
    4
    //     We can also use this instead of from line 11 to line 17
    5
    //     str = str.replace(/\u00E0|\u00E1|\u1EA1|\u1EA3|\u00E3|\u00E2|\u1EA7|\u1EA5|\u1EAD|\u1EA9|\u1EAB|\u0103|\u1EB1|\u1EAF|\u1EB7|\u1EB3|\u1EB5/g, "a");