Skip to content

Commit

Permalink
Remove comment on no-useless-escape
Browse files Browse the repository at this point in the history
  • Loading branch information
JelteF committed Sep 17, 2018
1 parent 012eec9 commit 705a4be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/getstream.js
Expand Up @@ -31,7 +31,7 @@ function connect(apiKey, apiSecret, appId, options) {
if (typeof process !== 'undefined' && process.env.STREAM_URL && !apiKey) {
var parts = /https:\/\/(\w+):(\w+)@([\w-]*).*\?app_id=(\d+)/.exec(
process.env.STREAM_URL,
); // eslint-disable-line no-useless-escape
);
apiKey = parts[1];
apiSecret = parts[2];
var location = parts[3];
Expand Down

0 comments on commit 705a4be

Please sign in to comment.