Skip to content

Instantly share code, notes, and snippets.

@blrobin2
Last active January 8, 2018 00:25
Show Gist options
  • Save blrobin2/be95bfe2c80e0b1ff32412c4dba35f7b to your computer and use it in GitHub Desktop.
Save blrobin2/be95bfe2c80e0b1ff32412c4dba35f7b to your computer and use it in GitHub Desktop.
My version of build string by @peterpme
const buildString = (delimeter: string, ...collection: any[]): string =>
collection.filter(Boolean).join(delimeter);
console.log(buildString('/', 'api', undefined, 'users', 123)); // 'api/users/123'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment