Files
coffeescript/documentation/js/prototypes.js
Jeremy Ashkenas eef83a9fcb CoffeeScript 1.6.1
2013-03-05 11:07:16 +13:00

6 lines
115 B
JavaScript

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