Skip to content

Commit

Permalink
feat: Add support for sourcemap debugId property (#292)
Browse files Browse the repository at this point in the history
  • Loading branch information
timfish authored Nov 18, 2024
1 parent 42d3d59 commit ef531a8
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/SourceMap.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ export default class SourceMap {
if (typeof properties.x_google_ignoreList !== 'undefined') {
this.x_google_ignoreList = properties.x_google_ignoreList;
}
if (typeof properties.debugId !== 'undefined') {
this.debugId = properties.debugId;
}
}

toString() {
Expand Down

0 comments on commit ef531a8

Please sign in to comment.