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:
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,13 @@
|
||||
/**
|
||||
*
|
||||
* @param ruleData
|
||||
* @param abilityLookup
|
||||
* @param proficiencyBonus
|
||||
*/
|
||||
export function hack__generatePdfDataBucket1AndBucket2Parts(ruleData, abilityLookup, proficiencyBonus) {
|
||||
return {
|
||||
ruleData,
|
||||
abilityLookup,
|
||||
proficiencyBonus,
|
||||
};
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
import * as PdfGenerators from './generators';
|
||||
import * as PdfHacks from './hacks';
|
||||
import * as PdfTypings from './typings';
|
||||
export * from './typings';
|
||||
export { PdfGenerators, PdfHacks };
|
||||
export default Object.assign(Object.assign(Object.assign({}, PdfGenerators), PdfTypings), PdfHacks);
|
||||
Reference in New Issue
Block a user