Your IP : 3.145.88.138


Current Path : /var/www/www-root/data/www/monolith-realty.ru/bitrix/js/landing/history/src/internal/
Upload File :
Current File : /var/www/www-root/data/www/monolith-realty.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 = null;
	history.commandState = RESOLVED;

	return Promise.resolve(history);
}