mirror of
https://github.com/prymitive/karma
synced 2026-05-07 03:26:52 +00:00
12 lines
180 B
JavaScript
12 lines
180 B
JavaScript
// https://github.com/facebook/jest/issues/3465
|
|
|
|
function debounce(wrapped) {
|
|
return wrapped;
|
|
}
|
|
|
|
function throttle(wrapped) {
|
|
return wrapped;
|
|
}
|
|
|
|
export { debounce, throttle };
|