Added gitorious-hosted repos to repository list.
[merb_radiant.git] / public / javascripts / string.js
blob78b3cbb75933d5558c63e649992bcdbd2ff5c253
1 Object.extend(String.prototype, {
2 upcase: function() {
3 return this.toUpperCase();
4 },
6 downcase: function() {
7 return this.toLowerCase();
8 },
10 toInteger: function() {
11 return parseInt(this);
14 toSlug: function() {
15 return this.strip().downcase().replace(/[^-a-z0-9~\s\.:;+=_]/g, '').replace(/[\s\.:;=+]+/g, '-');
17 });