-
Notifications
You must be signed in to change notification settings - Fork 47
Open
Description
I have an object like this
let order = {
owner: {
firstName: "John",
lastName: "Doe"
}
}
and this is my template
let template = "
hello {order.owner.firstName} {order.owner.lastName}
";but the output is
hello {order.owner.firstName} {order.owner.lastName}
instead of
hello John Doe
does string-template not process objects those are passed? Or there is some other way to accomplish it?
Metadata
Metadata
Assignees
Labels
No labels