When I am trying to run my application, I am getting the following error:
$jscomp.global.Object.defineProperties(i.prototype, { body: { configurable: true, enumerable: true, get: function() { return !this._body && this.isBinaryBody && (this._body = (new TextDecoder).decode(this._binaryBody)), this._body } }, binaryBody: { configurable: true, enumerable: true, get: function() { return this._binaryBody || this.isBinaryBody || (this._binaryBody = (new TextEncoder).encode(this._body)), this._binaryBody } } }); Uncaught (in promise) ReferenceError: $jscomp is not defined How, can I fix this?
Thanks