shell-mirror
Version:
Access your Mac shell from any device securely. Perfect for mobile coding with Claude Code CLI, Gemini CLI, and any shell tool.
27 lines (24 loc) • 453 B
JavaScript
'use strict';
function RTCDataChannelEvent(type, eventInitDict) {
Object.defineProperties(this, {
bubbles: {
value: false
},
cancelable: {
value: false
},
type: {
value: type,
enumerable: true
},
channel: {
value: eventInitDict.channel,
enumerable: true
},
target: {
value: eventInitDict.target,
enumerable: true
}
});
}
module.exports = RTCDataChannelEvent;