Utility for ${key} replacement in template strings.
${key}
import replace from "apprt-core/string-replace";let msg = replace("Say ${msg}",{msg: "hello" });msg === "Say hello"; // true Copy
import replace from "apprt-core/string-replace";let msg = replace("Say ${msg}",{msg: "hello" });msg === "Say hello"; // true
Utility for
${key}
replacement in template strings.Example