Your IP : 172.70.178.33


Current Path : /var/www/element/data/www/revenuestory.ru/bitrix/js/landing/history/src/internal/
Upload File :
Current File : /var/www/element/data/www/revenuestory.ru/bitrix/js/landing/history/src/internal/clear.js

import {INIT, RESOLVED} from './constants';
import type {History} from '../history';

/**
 * Clears history stack
 * @param {History} history
 * @return {Promise<History>}
 */
export default function clear(history: History): Promise<History>
{
	history.stack = [];
 	history.step = -1;
	history.commandState = RESOLVED;
	return Promise.resolve(history);
}