UNPKG
@dweb-browser/core
Version:
latest (0.1.4)
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
0.0.9
0.0.8
0.0.7
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
dweb core
github.com/BioforestChain/dweb_browser
BioforestChain/dweb_browser
@dweb-browser/core
/
esm
/
src
/
ipcEventOnShortcut.js
6 lines
(5 loc)
•
193 B
JavaScript
View Raw
1
2
3
4
5
6
import
{ onSomeEvent }
from
"./internal/ipcEventExt.js"
;
const
SHORTCUT_EVENT
=
"shortcut"
;
export
const
onShortcut
= (
runtime, cb
) => {
return
onSomeEvent
(runtime,
SHORTCUT_EVENT
, cb); };