Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
get() {
if (this._isReloading === undefined) {
let requests = this.store.getRequestStateService().getPendingRequestsForRecord(recordIdentifierFor(this));
let value = !!requests.find(req => req.request.data[0].options.isReloading);
return (this._isReloading = value);
}
return this._isReloading;
},
set(_, value) {