jashkenas--coffeescript/documentation/js/prototypes.js

5 lines
115 B
JavaScript

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