Skip to content

Instantly share code, notes, and snippets.

@UltiRequiem
Created August 5, 2022 17:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save UltiRequiem/af1a6d34b0d6c58483f31d740225bf25 to your computer and use it in GitHub Desktop.
Save UltiRequiem/af1a6d34b0d6c58483f31d740225bf25 to your computer and use it in GitHub Desktop.
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