/documentation/js/default_args.js

http://github.com/jashkenas/coffee-script · JavaScript · 9 lines · 7 code · 1 blank · 1 comment · 2 complexity · 17faff648aa65da989bddaa7f2fb1dce MD5 · raw file

  1. // Generated by CoffeeScript 1.10.0
  2. var fill;
  3. fill = function(container, liquid) {
  4. if (liquid == null) {
  5. liquid = "coffee";
  6. }
  7. return "Filling the " + container + " with " + liquid + "...";
  8. };