Skip to content

Instantly share code, notes, and snippets.

@obrassard
Created January 18, 2019 20:48
Show Gist options
  • Save obrassard/59b367245ce168f4a3fefbffead75e75 to your computer and use it in GitHub Desktop.
Save obrassard/59b367245ce168f4a3fefbffead75e75 to your computer and use it in GitHub Desktop.
export {};
declare global {
interface String {
isNotEmpty(): boolean;
}
}
String.prototype.isNotEmpty = function () {
return (this.trim() !== '');
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment