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

6 lines
115 B
JavaScript

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