Files
coffeescript/documentation/js/prototypes.js
2015-05-14 11:24:39 +02:00

5 lines
114 B
JavaScript

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