UNPKG

@nozbe/watermelondb

Version:

Build powerful React Native and React web apps that scale from hundreds to tens of thousands of records and remain fast

7 lines (5 loc) 185 B
// @flow export default function likeToRegexp(likeQuery: string): RegExp { const regexp = `^${likeQuery}$`.replace(/%/g, '.*').replace(/_/g, '.') return new RegExp(regexp, 'is') }