Sign in
chromium
/
devtools
/
devtools-frontend
/
b24f069b5c6487add5b024e76fc7eb4f248c65cf
/
.
/
node_modules
/
rambda
/
src
/
replace.js
blob: 64cfb45f329c49fd4d0c91622181b3cb7f10c372 [
file
]
import
{
curry
}
from
'./curry.js'
function
replaceFn
(
pattern
,
replacer
,
str
){
return
str
.
replace
(
pattern
,
replacer
)
}
export
const
replace
=
curry
(
replaceFn
)