We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.
You must be logged in to block users.
Contact GitHub support about this userβs behavior. Learn more about reporting abuse.
π©πͺ Based in Germany
π Website
π LinkedIn
let uniqueIDs = 0
let uniqueIDsLength = 20
export function id(name = '') {
try {
export const MAX_STR_LEN = 80
/** This will split a sentence to a length of MAX_STR_LEN while not cutting through words. */
export function truncate(str = "", length = MAX_STR_LEN) {
str = str.trim()
function setInnerViewport() {
const vh = window.innerHeight * 0.01
const vw = window.innerWidth * 0.01
document.documentElement.style.setProperty("--vh", `${vh}px`)
document.documentElement.style.setProperty("--vw", `${vw}px`)