3
0
mirror of https://github.com/reality/dbot.git synced 2024-12-25 04:02:39 +01:00

Merge branch 'master' of github.com:reality/depressionbot

This commit is contained in:
reality 2012-12-29 18:47:14 +00:00
commit a332305a25

View File

@ -263,3 +263,8 @@ Number.prototype.numberFormat = function(dec_places){
parts[0] = parts[0].replace(/\B(?=(\d{3})+(?!\d))/g, sep);
return parts.join(dec_point);
}
// http://simonwillison.net/2006/Jan/20/escape/#p-6
String.prototype.escape = function() {
return this.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, "\\$&");
}