mirror of
https://github.com/logsol/chuck.js.git
synced 2026-05-11 10:37:34 +00:00
use strict; fixes #83
This commit is contained in:
parent
b886728bf5
commit
2b186be8af
78 changed files with 163 additions and 5 deletions
|
|
@ -9,6 +9,8 @@ define([
|
|||
|
||||
function (Nc, ProtocolHelper, validate, Options, Settings, FileSystem) {
|
||||
|
||||
"use strict";
|
||||
|
||||
function Api(coordinator) {
|
||||
this.coordinator = coordinator;
|
||||
this.isError = false;
|
||||
|
|
|
|||
|
|
@ -8,6 +8,8 @@ define([
|
|||
|
||||
function (User, Channel, PipeToChannel, Nc, Settings) {
|
||||
|
||||
"use strict";
|
||||
|
||||
function Coordinator() {
|
||||
this.channelPipes = {};
|
||||
|
||||
|
|
|
|||
|
|
@ -5,6 +5,8 @@ define([
|
|||
|
||||
function (Nc, childProcess) {
|
||||
|
||||
"use strict";
|
||||
|
||||
var fork = childProcess.fork;
|
||||
|
||||
function PipeToChannel (options) {
|
||||
|
|
|
|||
|
|
@ -6,6 +6,8 @@ define([
|
|||
|
||||
function (Parent, ProtocolHelper, Nc) {
|
||||
|
||||
"use strict";
|
||||
|
||||
function User (socketLink, coordinator) {
|
||||
Parent.call(this, socketLink.id, {});
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue