/** * Copyright (c) OpenLens Authors. All rights reserved. * Licensed under MIT License. See LICENSE in root directory for more information. */ import type React from "react"; // Helper for inlining middleClick checks //
console.log('do some action'))}> // // //
export function isMiddleClick(callback: (evt: E) => any) { return function (evt: E) { if(evt.button === 1) { return callback(evt); } }; }