let warm = false;

export const setWarm = () => {
	warm = true;
};

export const getWarm = () => warm;
