/scalate-util/src/test/resources/moustache/js/simple.js

http://github.com/scalate/scalate · JavaScript · 8 lines · 8 code · 0 blank · 0 comment · 0 complexity · 957d7fd187c45218fc887e2efb5d5565 MD5 · raw file

  1. var simple = {
  2. name: "Chris",
  3. value: 10000,
  4. taxed_value: function() {
  5. return this.value - (this.value * 0.4);
  6. },
  7. in_ca: true
  8. };