0.8.4
Fixed bug with function helpers where empty string would be passed as first arg when no args were passed, causing default args not to work:
z.helper({ test: (x = 5) => `margin ${x}` })
z`test` // this would result in no style being applied, since x would be '' instead of defaulting to 5