node-ipc/node-ipc.js

22 lines
400 B
JavaScript
Raw Normal View History

2016-01-10 23:18:14 +11:00
'use strict';
const IPC = require('./services/IPC.js');
2016-01-11 15:59:40 +11:00
class IPCModule extends IPC{
constructor(){
super();
2016-01-11 16:10:58 +11:00
//include IPC to make extensible
2016-01-11 15:59:40 +11:00
Object.defineProperty(
this,
'IPC',
{
enumerable:true,
writable:false,
value:IPC
}
)
}
2014-02-22 20:13:31 +11:00
}
2016-01-11 15:59:40 +11:00
module.exports=new IPCModule;