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 DiceAccessors from './accessors';
import * as DiceConstants from './constants';
import * as DiceDerivers from './derivers';
import * as DiceGenerators from './generators';
import * as DiceRenderers from './renderers';
import * as DiceSimulators from './simulators';
import * as DiceTypings from './typings';
import * as DiceUtils from './utils';
export * from './constants';
export * from './typings';
export { DiceAccessors, DiceRenderers, DiceSimulators, DiceUtils, DiceDerivers, DiceGenerators };
export default Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({}, DiceAccessors), DiceRenderers), DiceSimulators), DiceUtils), DiceTypings), DiceConstants), DiceDerivers), DiceGenerators);