========================
Features
--------
- Introduces $switch operator, which behaves like a combination of the $if and $match operator for
more complex boolean logic. It gets an object, in which every key is a string expression(s), where
at most one must evaluate to true and the remaining to false based on the context. The result will be
the value corresponding to the key that were evaluated to true. (257)
Bugfixes
--------
- Builtin functions are now called with relevant context.
This means that builtins like `fromNow()` and `defined()` respect variables defined via `$let`. (342&343)
- Fix error (constructor.name) when using with Webpack in production mode (354)
Improved Documentation
----------------------
- The `defined()` builtin is now documented. (341)
- Tests now include a test case for 354, regarding function evaluation. (354)