Files
coffeescript/documentation/js/prototypes.js
Jeremy Ashkenas 158d37215a CoffeeScript 1.4.0
2012-10-23 16:45:31 -04:00

6 lines
115 B
JavaScript

// Generated by CoffeeScript 1.4.0
String.prototype.dasherize = function() {
return this.replace(/_/g, "-");
};