olleicua/hcl

Add unless function

Closed this issue · 1 comments

unless should be the inverse of when:

HCL:

(unless (published?)
   (perish))

JavaScript:

(! published_question_() && (function() { return perish(); }).call(this))

Add until as well