10 lines
135 B
TypeScript
10 lines
135 B
TypeScript
|
|
|
||
|
|
/* IMPORT */
|
||
|
|
|
||
|
|
import debounce from './debounce.js';
|
||
|
|
import throttle from './throttle.js';
|
||
|
|
|
||
|
|
/* EXPORT */
|
||
|
|
|
||
|
|
export {debounce, throttle};
|