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

8 lines (7 loc) 227 B
"use strict"; exports.__esModule = true; exports.default = likeToRegexp; function likeToRegexp(likeQuery) { var regexp = "^".concat(likeQuery, "$").replace(/%/g, '.*').replace(/_/g, '.'); return new RegExp(regexp, 'is'); }