Context functions
get value()
​
Returns the value of the context entry with the given key.
- parameters:
context
: contextkey
: string
- result: any
get value({foo: 123}, "foo")
// 123
get entries()
​
Returns the entries of the context as list of key-value-pairs.
- parameters:
context
: context
- result: list of context which contains two entries for "key" and "value"
get entries({foo: 123})
// [{key: "foo", value: 123}]