mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-04-22 09:09:09 +00:00
11 lines
160 B
Plaintext
11 lines
160 B
Plaintext
---js
|
|
{
|
|
key1: "value1",
|
|
key2: function(value) {
|
|
return value.toUpperCase();
|
|
},
|
|
key3: "value3"
|
|
}
|
|
---
|
|
c:<%= key1 %>:<%= key2("value2") %>:<%= key3 %>
|