Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/js/main/imageeditor/src/internal/
Upload File :
Current File : /var/www/homesaver/www/bitrix/js/main/imageeditor/src/internal/get-file-name.js

import {Type} from 'main.core';

export default function getFileName(src: string)
{
	if (Type.isString(src))
	{
		return src.split('/').pop();
	}

	return '';
}