I need help finding a feature in Angular that can achieve the following task:
var data = {
name: 'Jane Smith',
age: 30
}
someFunction('Hey there, {{name}}, you are {{age}} years old', data)
// should give output 'Hey there, Jane Smith, you are 30 years old'
I am aware of the $eval function but it does not support nested double braces.