12 lines
267 B
JavaScript
12 lines
267 B
JavaScript
|
|
const setupDevtoolsPlugin = () => {
|
||
|
|
};
|
||
|
|
const isPerformanceSupported = () => false;
|
||
|
|
const now = () => Date.now();
|
||
|
|
const index = {
|
||
|
|
setupDevtoolsPlugin,
|
||
|
|
isPerformanceSupported,
|
||
|
|
now
|
||
|
|
};
|
||
|
|
|
||
|
|
export { index as default, isPerformanceSupported, now, setupDevtoolsPlugin };
|