index.ts 164 Bytes Raw Blame History Permalink 1 2 3 4 5 export const isShareMode = () => { const sharePageReg = /\/share\/[^/]+\/[^/]+\/[^/]+/; const { pathname } = location; return sharePageReg.test(pathname); };