UNPKG

@randsum/roller

Version:

A flexible, type-safe dice roller for tabletop RPGs, game development, and probability simulations

6 lines (4 loc) 181 B
import type { ModifierLog } from '../../../types' export function mergeLogs(existingLogs: ModifierLog[], newLog: ModifierLog): ModifierLog[] { return [...existingLogs, newLog] }