Sign in
chromium
/
devtools
/
devtools-frontend
/
5dfb21679dc5d9affc8a50122a3e245ff69f1d08
/
.
/
node_modules
/
rambda
/
src
/
match.js
blob: c73499012f9613a5c0b45af0c265f468833d67a0 [
file
]
export
function
match
(
pattern
,
input
){
if
(
arguments
.
length
===
1
)
return
_input
=>
match
(
pattern
,
_input
)
const
willReturn
=
input
.
match
(
pattern
)
return
willReturn
===
null
?
[]
:
willReturn
}