Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/js/location/core/src/entity/address/
Upload File :
Current File : /var/www/homesaver/www/bitrix/js/location/core/src/entity/address/addressfield.js

import Field from "../generic/field";

export default class AddressField extends Field
{
	#value;

	//todo: Fields validation
	constructor(props)
	{
		super(props);
		this.#value = props.value || '';
	}

	get value()
	{
		return this.#value;
	}

	set value(value)
	{
		this.#value = value;
		return this;
	}
}