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