Files
coffeescript/documentation/js/prototypes.js
Jeremy Ashkenas 84b8b5ccee CoffeeScript 1.6.3
2013-06-02 09:37:45 +04:00

5 lines
114 B
JavaScript

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