mirror of
https://github.com/nodejs/node.git
synced 2025-05-05 08:53:12 +00:00

PR-URL: https://github.com/nodejs/node/pull/17820 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
25 lines
654 B
JavaScript
25 lines
654 B
JavaScript
/**
|
|
* @fileoverview Interpolate keys from an object into a string with {{ }} markers.
|
|
* @author Jed Fox
|
|
*/
|
|
|
|
"use strict";
|
|
|
|
//------------------------------------------------------------------------------
|
|
// Public Interface
|
|
//------------------------------------------------------------------------------
|
|
|
|
module.exports = (text, data) => {
|
|
if (!data) {
|
|
return text;
|
|
}
|
|
return text.replace(/\{\{\s*([^{}]+?)\s*\}\}/g, (fullMatch, term) => {
|
|
if (term in data) {
|
|
return data[term];
|
|
}
|
|
|
|
// Preserve old behavior: If parameter name not provided, don't replace it.
|
|
return fullMatch;
|
|
});
|
|
};
|