Skip to content

Commit

Permalink
single quotes for paddy
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonWoolf committed Jul 21, 2016
1 parent 84ddef1 commit e7e9cf5
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion common/lib/client/auth.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
var Auth = (function() {
var isBrowser = (typeof(window) == 'object');
var crypto = isBrowser ? null : require('crypto');
var msgpack = (typeof require !== "function") ? Ably.msgpack : require('msgpack-js');
var msgpack = (typeof require !== 'function') ? Ably.msgpack : require('msgpack-js');
function noop() {}
function random() { return ('000000' + Math.floor(Math.random() * 1E16)).slice(-16); }

Expand Down
2 changes: 1 addition & 1 deletion common/lib/client/resource.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
var Resource = (function() {
var msgpack = (typeof require !== "function") ? Ably.msgpack : require('msgpack-js');
var msgpack = (typeof require !== 'function') ? Ably.msgpack : require('msgpack-js');

function Resource() {}

Expand Down
2 changes: 1 addition & 1 deletion common/lib/types/message.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
var Message = (function() {
var msgpack = (typeof require !== "function") ? Ably.msgpack : require('msgpack-js');
var msgpack = (typeof require !== 'function') ? Ably.msgpack : require('msgpack-js');

function Message() {
this.name = undefined;
Expand Down
2 changes: 1 addition & 1 deletion common/lib/types/presencemessage.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
var PresenceMessage = (function() {
var msgpack = (typeof require !== "function") ? Ably.msgpack : require('msgpack-js');
var msgpack = (typeof require !== 'function') ? Ably.msgpack : require('msgpack-js');

function toActionValue(actionString) {
return Utils.arrIndexOf(PresenceMessage.Actions, actionString)
Expand Down
2 changes: 1 addition & 1 deletion common/lib/types/protocolmessage.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
var ProtocolMessage = (function() {
var msgpack = (typeof require !== "function") ? Ably.msgpack : require('msgpack-js');
var msgpack = (typeof require !== 'function') ? Ably.msgpack : require('msgpack-js');

function ProtocolMessage() {
this.action = undefined;
Expand Down

0 comments on commit e7e9cf5

Please sign in to comment.