Skip to content

Instantly share code, notes, and snippets.

View moharnadreza's full-sized avatar
🐢

Mohammadreza Ziadzadeh moharnadreza

🐢
View GitHub Profile
@moharnadreza
moharnadreza / getCookie.ts
Last active July 2, 2021 11:36
Small utility function to get cookie by given key.
type Params = {
key: string;
}
export const getCookie = ({ key }: Params): string | null => {
const item = document.cookie.match("(^|;)\\s*" + key + "\\s*=\\s*([^;]+)");
return item?.pop() || null;
};
@moharnadreza
moharnadreza / ScrollToEnd.js
Last active August 2, 2019 19:40
Paste the code below in console to scroll to bottom of the page.
window.scrollTo(0, document.body.scrollHeight)