import { debounce, throttle } from "https://esm.sh/es-toolkit";
const obj = {
msg: 'hello world',
logWithDebounce: debounce(function () {
console.log(this?.msg);
}, 100),
logWithThrottle: throttle(function () {
console.log(this?.msg);
}, 100),
};
obj.logWithDebounce(); // 'hello world'
obj.logWithThrottle(); // undefined
https://codepen.io/rod24574575/pen/dPGZXop?editors=1111