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