Files
coffeescript/documentation/js/prototypes.js
Jeremy Ashkenas 81047d45ee CoffeeScript 1.8.0
2014-08-26 12:24:29 -04:00

5 lines
114 B
JavaScript

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