@forge/util

2.0.12.0.1-experimental-7890858
packages/ari/microsoft/channel/index.js
~packages/ari/microsoft/channel/index.jsModified
+1−5
Index: package/packages/ari/microsoft/channel/index.js
===================================================================
--- package/packages/ari/microsoft/channel/index.js
+++ package/packages/ari/microsoft/channel/index.js
@@ -284,25 +284,21 @@
 var microsoftChannelAriStaticOpts = {
   qualifier: "ari",
   platformQualifier: "third-party",
   cloudId: new RegExp("^$"),
-  // eslint-disable-line no-useless-escape
   resourceOwner: MicrosoftChannelAriResourceOwner,
   resourceType: MicrosoftChannelAriResourceType,
   resourceIdSlug: "teamId/{teamId}/channelId/{channelId}",
   resourceIdSegmentFormats: {
     teamId: /[!a-zA-Z0-9\-_.~@:;{}=]+(\/[!a-zA-Z0-9\-_.~@:;{}=]+)*/,
-    // eslint-disable-line no-useless-escape
     channelId: /[!a-zA-Z0-9\-_.~@:;{}=]+(\/[!a-zA-Z0-9\-_.~@:;{}=]+)*/
-    // eslint-disable-line no-useless-escape
   }
 };
 
 // src/microsoft/channel/index.ts
 var MicrosoftChannelAri = class _MicrosoftChannelAri extends RegisteredAri {
   constructor(opts) {
-    super(opts);
-    this._teamId = opts.resourceIdSegmentValues.teamId, this._channelId = opts.resourceIdSegmentValues.channelId;
+    super(opts), this._teamId = opts.resourceIdSegmentValues.teamId, this._channelId = opts.resourceIdSegmentValues.channelId;
   }
   get teamId() {
     return this._teamId;
   }