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 @@
import * as RaceAccessors from './accessors';
import * as RaceConstants from './constants';
import * as RaceDerivers from './derivers';
import * as RaceGenerators from './generators';
import * as RaceHacks from './hacks';
import * as RaceTypings from './typings';
import * as RaceUtils from './utils';
import * as RaceValidators from './validators';
export * from './constants';
export * from './typings';
export { RaceAccessors, RaceDerivers, RaceGenerators, RaceUtils, RaceHacks, RaceValidators };
export default Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({}, RaceAccessors), RaceConstants), RaceDerivers), RaceGenerators), RaceHacks), RaceTypings), RaceUtils), RaceValidators);