UNPKG

rambda

Version:

Lightweight and faster alternative to Ramda with included TS definitions

8 lines (6 loc) 153 B
export function match(pattern) { return input => { const willReturn = input.match(pattern) return willReturn === null ? [] : willReturn } }