@forge/util

2.0.12.0.1-experimental-7890858
packages/ari/microsoft/account/index.js
~packages/ari/microsoft/account/index.jsModified
+1−4
Index: package/packages/ari/microsoft/account/index.js
===================================================================
--- package/packages/ari/microsoft/account/index.js
+++ package/packages/ari/microsoft/account/index.js
@@ -284,23 +284,20 @@
 var microsoftAccountAriStaticOpts = {
   qualifier: "ari",
   platformQualifier: "third-party",
   cloudId: new RegExp("^$"),
-  // eslint-disable-line no-useless-escape
   resourceOwner: MicrosoftAccountAriResourceOwner,
   resourceType: MicrosoftAccountAriResourceType,
   resourceIdSlug: "{accountId}",
   resourceIdSegmentFormats: {
     accountId: /[a-zA-Z0-9\-_.~@;{}=]{0,255}/
-    // eslint-disable-line no-useless-escape
   }
 };
 
 // src/microsoft/account/index.ts
 var MicrosoftAccountAri = class _MicrosoftAccountAri extends RegisteredAri {
   constructor(opts) {
-    super(opts);
-    this._accountId = opts.resourceIdSegmentValues.accountId;
+    super(opts), this._accountId = opts.resourceIdSegmentValues.accountId;
   }
   get accountId() {
     return this._accountId;
   }