js-search
Version:
JS Search is an efficient, client-side search library for JavaScript and JSON objects
17 lines (13 loc) • 370 B
JavaScript
// @flow
import type { ISanitizer } from './Sanitizer';
/**
* Sanitizes text by converting to a locale-friendly lower-case version and triming leading and trailing whitespace.
*/
export class LowerCaseSanitizer implements ISanitizer {
/**
* @inheritDocs
*/
sanitize(text : string) : string {
return text ? text.toLocaleLowerCase().trim() : '';
}
};