_.once = function(func) {
    var ran = false, memo;
    return function() {
      if (ran) return memo;
      ran = true;