Created
August 5, 2022 17:08
-
-
Save UltiRequiem/af1a6d34b0d6c58483f31d740225bf25 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function includesCaseInsensitive(string: string, stringToSearch: string) { | |
return new RegExp(stringToSearch, "i").test(string); | |
} | |
const hey = includesCaseInsensitive("Follow me on Github!", "github"); | |
console.log(hey); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment