package basics.cleanser;
/**
 * The cleansers should not return null, but a empty string.
 * @author kst
 */
public interface Cleanser
{
String text(String input);
}
