branch.js 135 B

12345
  1. export const getBranch = () => {
  2. const { head } = window.buildInfo.scope
  3. const r = head.split('heads/')
  4. return r[r.length - 1]
  5. }