UNPKG

@grindife/supamelon

Version:

Combination of supabase and watermelondb

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