/ node_modules / @jet / engine / lib / dependencies / jet-host.js
jet-host.js
 1  "use strict";
 2  Object.defineProperty(exports, "__esModule", { value: true });
 3  exports.JetHost = void 0;
 4  class JetHost {
 5      constructor(options) {
 6          this.osBuild = "unknown";
 7          this.deviceModel = "unknown";
 8          this.deviceModelFamily = "unknown";
 9          this.devicePhysicalModel = "unknown";
10          this.deviceLocalizedModel = "unknown";
11          this.clientIdentifier = "unknown";
12          this.clientVersion = "unknown";
13          this.platform = options.platform;
14      }
15      isOSAtLeast() {
16          return false;
17      }
18  }
19  exports.JetHost = JetHost;