mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-12 20:18:41 -09:00
10 lines
242 B
JavaScript
Executable file
10 lines
242 B
JavaScript
Executable file
let setup = () => {
|
|
console.warn('electron-drag-click: Unsupported platform.');
|
|
};
|
|
|
|
if (process.platform === 'darwin') {
|
|
const binding = require('bindings')('electron_drag_click.node');
|
|
setup = binding.setup;
|
|
}
|
|
|
|
module.exports = setup;
|