Files
karma/ui/__mocks__/lodash.js
2018-08-24 18:44:54 +01:00

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 };