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