export function makeHashHistoryDriver(
  options?: HashHistoryOptions
): HistoryDriver {
  const history = createHashHistory(options);
  return function hashHistoryDriver(sink$: Stream<HistoryInput | string>) {