Files
coffeescript/documentation/js/prototypes.js
2016-10-01 20:58:53 +02:00

5 lines
115 B
JavaScript

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