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