/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
- // Generated by CoffeeScript 1.10.0
- var fill;
- fill = function(container, liquid) {
- if (liquid == null) {
- liquid = "coffee";
- }
- return "Filling the " + container + " with " + liquid + "...";
- };