Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
80770 views
1
keep_properties: {
2
options = {
3
properties: false
4
};
5
input: {
6
a["foo"] = "bar";
7
}
8
expect: {
9
a["foo"] = "bar";
10
}
11
}
12
13
dot_properties: {
14
options = {
15
properties: true
16
};
17
input: {
18
a["foo"] = "bar";
19
a["if"] = "if";
20
}
21
expect: {
22
a.foo = "bar";
23
a["if"] = "if";
24
}
25
}
26
27