Open Semnodime opened 1 year ago
Unpack Objects. This already works for arrays.
Unpack foo[42] into "hello world".
foo[42]
"hello world"
var foo = {42: "hello world"}; console.log(foo[42]);
console.log("hello world");
Feature Request
Unpack Objects. This already works for arrays.
Example
Unpack
foo[42]
into"hello world"
.Expected Result