This is my code block looks line when used with a useCallback
hook in react but I want to use same function in svelte,but want to add this in useCallback hook. Is there any alternative for svelte.
const newCancelToken = useCallback(() => {
axiosSource.current = axios.CancelToken.source();
return axiosSource.current.token;
}, []);