Skip to content

Commit

Permalink
Fix array spread linter error.
Browse files Browse the repository at this point in the history
  • Loading branch information
misoeli committed Apr 29, 2022
1 parent 8b3953f commit 8c86e4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/XrmDefinitelyTyped/Resources/dg.xrmquery.rest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ namespace XQR { //eslint-disable-line @typescript-eslint/no-namespace
},
errorCallback ? errorCallback : NoOp,
() => {
successCallback([].concat.apply([], pages));
successCallback(Array.prototype.concat(...pages));
});
}

Expand Down

0 comments on commit 8c86e4c

Please sign in to comment.