index.ts 166 Bytes
export const isShareMode = () => {
  const sharePageReg = /^\/share\/[^/]+\/[^/]+\/[^/]+$/;
  const { pathname } = location;
  return sharePageReg.test(pathname);
};