View file phpBB3/vendor/s9e/text-formatter/src/Parser/AttributeFilters/EmailFilter.js

File size: 187B
/** @const */
var EmailFilter =
{
	/**
	* @param  {*} attrValue
	* @return {*}
	*/
	filter: function(attrValue)
	{
		return /^[-\w.+]+@[-\w.]+$/.test(attrValue) ? attrValue : false;
	}
};