All Downloads are FREE. Search and download functionalities are using the official Maven repository.

lib.enonic.asset.util.stringEndsWith.ts Maven / Gradle / Ivy

export function stringEndsWith(
	string: string,
	suffix: string,
): boolean {
	return string.indexOf(suffix, string.length - suffix.length) !== -1;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy