6 lines
133 B
JavaScript
6 lines
133 B
JavaScript
/* IMPORT */
|
|
import debounce from './debounce.js';
|
|
import throttle from './throttle.js';
|
|
/* EXPORT */
|
|
export { debounce, throttle };
|