Skip to content

Commit ef531a8

Browse files
authored
feat: Add support for sourcemap debugId property (#292)
1 parent 42d3d59 commit ef531a8

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/SourceMap.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ export default class SourceMap {
2525
if (typeof properties.x_google_ignoreList !== 'undefined') {
2626
this.x_google_ignoreList = properties.x_google_ignoreList;
2727
}
28+
if (typeof properties.debugId !== 'undefined') {
29+
this.debugId = properties.debugId;
30+
}
2831
}
2932

3033
toString() {

0 commit comments

Comments
 (0)