UNPKG

@antv/util

Version:

<h1 align="center">@antv/util</h1>

8 lines (5 loc) 148 B
import isType from './is-type'; const isRegExp = function (str: any): str is RegExp { return isType(str, 'RegExp'); }; export default isRegExp;