Grabbed dndbeyond's source code

```
~/go/bin/sourcemapper -output ddb -jsurl https://media.dndbeyond.com/character-app/static/js/main.90aa78c5.js
```
This commit is contained in:
2025-05-28 11:50:03 -07:00
commit 8df9031d27
3592 changed files with 319051 additions and 0 deletions
@@ -0,0 +1,12 @@
/**
*
* @param {function} actionCreator
* @param {...*} params
*/
export function callCommitAction(actionCreator, ...params) {
let action = actionCreator(...params);
return {
type: action.meta.commit.type,
payload: action.payload,
};
}
@@ -0,0 +1,4 @@
export function getArrayOrNullFallback(value) {
let fallback = [];
return value === null ? fallback : value;
}
@@ -0,0 +1,16 @@
/**
* https://github.com/Microsoft/TypeScript/issues/16069#issuecomment-369374214
* Used to get around array filter function that errors because it doesn't recognize the filter
* is removing nulls
* @param input
*/
export function isNotNullOrUndefined(input) {
return input !== null;
}
/**
*
* @param x
*/
export function testUnreachable(x) {
// not implemented, only here for param check
}