Your IP : 18.217.19.195


Current Path : /var/www/axolotl/data/www/ekb.axolotls.ru/bitrix/js/main/core/src/lib/uri/
Upload File :
Current File : /var/www/axolotl/data/www/ekb.axolotls.ru/bitrix/js/main/core/src/lib/uri/prepare-param-value.js

import Type from '../type';

export default function prepareParamValue(value)
{
	if (Type.isArray(value))
	{
		return value.map(item => String(item));
	}

	if (Type.isPlainObject(value))
	{
		return {...value};
	}

	return String(value);
}