Skip to content
Snippets Groups Projects
Select Git revision
  • 67b9e98a6d9cf8ef3830629085a7e4810b3ea39e
  • master default protected
2 results

utils.js

Blame
  • utils.js 270 B
    // random shit
    
    const params = new URLSearchParams(location.search);
    
    export const pi = Math.PI;
    export const getParameter = key => key ? params.get(key) : 0;
    export const hash = _ => window.location.hash;
    export const setHash = string => window.location.hash = string;