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

Block or report zanatahenry

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. philosophya philosophya Public

    NextJS + Open Ai

    TypeScript 1

  2. ignoring all texts within parentheses ignoring all texts within parentheses
    1
    function ignoreParentheses (value: string) {
    2
        const regex = /\([^)]*\)/g
    3
        // Example: abc(def)
    4
        const treatedValue: value.replace(regex, "")
    5
        return treatedValue // result: abc