`e()` should just be an alias for `~""` but it returns an object when the string is empty. I would expect it to return the same value. in: ``` .test { @foo: ~""; @bar: e(""); &:before{ content: @foo; } &:after{ content: @bar; } } ``` out: ``` .test:before { content: ; } .test:after { content: [object Object]; } ```