@wordpress/components
Version:
UI components for WordPress.
8 lines (7 loc) • 370 B
JavaScript
/**
* External dependencies
*/
import { deburr } from 'lodash'; // @see packages/block-editor/src/components/inserter/search-items.js
export const normalizeInput = input => deburr(input).replace(/^\//, '').toLowerCase();
export const normalizedSearch = (title, search) => -1 !== normalizeInput(title).indexOf(normalizeInput(search));
//# sourceMappingURL=utils.js.map