UNPKG

@cookbook/dot-notation

Version:

Object readings and complex transformations using dot notation syntax.

10 lines (9 loc) 295 B
/** * Replace search values from string * @param {string} source * @param {string | string[]} searchValues * @param {string} replaceWith * @returns {string} */ declare const replace: (source: string, searchValues: string | string[], replaceWith: string) => string; export default replace;