config.js
404 字节
export const MAX_SIZE = 1024 * 1024 * 5;
export const INVALID_TYPES = ['image/jpeg', 'image/png', 'image/gif', 'image/webp'];
export const getCookie = (name) => {
const cookieArr = document.cookie.split('; ');
for (let item of cookieArr) {
const [key, value] = item.split('=');
if (key === name) {
return decodeURIComponent(value);
}
}
return null;
}