Skip to main content
Module

x/rambda/source/replace.js

Faster and smaller alternative to Ramda
Go to Latest
File
import {curry} from './curry'
function replaceFn(pattern, replacer, str) { return str.replace(pattern, replacer)}
export const replace = curry(replaceFn)