pankod/refine

View on GitHub
cypress/utils/getIdFromURL/index.ts

Summary

Maintainability
A
0 mins
Test Coverage
export const getIdFromURL = (url: string) => {
  const id = Number(url.split("/")?.pop()?.split("?")?.[0]);
  return id;
};