UNPKG

@dada78641/bwrepinfo

Version:

Parses StarCraft: Remastered replay files and returns human-readable information

15 lines (12 loc) 307 B
// bwrepinfo <https://github.com/msikma/hydrabot> // © MIT license const defaultOptions = { useSpoilerMessages: true, maxChatLines: 5 } /** * Merges the default options in with the user's options. */ export function resolveOptions(userOptions = {}) { return {...defaultOptions, ...userOptions} }