9 lines
214 B
JavaScript
Raw Normal View History

'use strict';
2019-04-23 15:18:57 +02:00
// needed for regenerator-runtime
require('@babel/polyfill');
const noop = () => {};
// eslint-disable-next-line no-undef
Object.defineProperty(window, 'scrollTo', { value: noop, writable: true });