Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
24 lines (23 sloc)
683 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Replaces matches for `pattern` in `string` with `replacement`. | |
* | |
* **Note:** This method is based on | |
* [`String#replace`](https://mdn.io/String/replace). | |
* | |
* @since 4.0.0 | |
* @category String | |
* @param {string} [string=''] The string to modify. | |
* @param {RegExp|string} pattern The pattern to replace. | |
* @param {Function|string} replacement The match replacement. | |
* @returns {string} Returns the modified string. | |
* @see truncate, trim | |
* @example | |
* | |
* replace('Hi Fred', 'Fred', 'Barney') | |
* // => 'Hi Barney' | |
*/ | |
function replace(...args) { | |
const string = `${args[0]}` | |
return args.length < 3 ? string : string.replace(args[1], args[2]) | |
} | |
export default replace |