Skip to content

Instantly share code, notes, and snippets.

@isabolic
Created January 4, 2018 07:41
Show Gist options
  • Select an option

  • Save isabolic/818b13352625dcc02f57e01c3e53d9f2 to your computer and use it in GitHub Desktop.

Select an option

Save isabolic/818b13352625dcc02f57e01c3e53d9f2 to your computer and use it in GitHub Desktop.
disemvowel.ts
export class Kata {
static disemvowel(str: string) {
return str.replace(new RegExp('[AEIOUaeiou]', 'g'), '');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment