/styleguides

Repository for styleguides

MIT LicenseMIT

styleguides

Styleguides Javascript

#Comma first

var json = {
      "label": "value"
    , "label": "value"
}

#Prototype

String.prototype.prefix = function (str) {
      return str + this;
}