UNPKG

moy-fp

Version:
14 lines (11 loc) 238 B
import curry from '../Function/curry' /** * RegExp | String -> String -> [String] */ const match = curry( (regexp, string) => { const result = string.match(regexp) return result ? [...result] : [] } ) export default match