Skip to content

Instantly share code, notes, and snippets.

@Steakeye
Last active November 29, 2021 15:38
Show Gist options
  • Save Steakeye/a0ff3f990729c3fdc5c15c489bbdceff to your computer and use it in GitHub Desktop.
Save Steakeye/a0ff3f990729c3fdc5c15c489bbdceff to your computer and use it in GitHub Desktop.
TypeScript singleton pattern
export const singleton = new (class Singleton {
constructor(p: string) {}
})('param');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment