Skip to content

Instantly share code, notes, and snippets.

@dsebastien
Last active April 26, 2021 19:00
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 dsebastien/421ec2f73a32e0a845cd1c2a87053d70 to your computer and use it in GitHub Desktop.
Save dsebastien/421ec2f73a32e0a845cd1c2a87053d70 to your computer and use it in GitHub Desktop.
export function removeLastElement <T>(elements: T[]): T[] {
return elements.slice(0, elements.length -1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment