summaryrefslogtreecommitdiffstats
path: root/assets/js/watch.js
diff options
context:
space:
mode:
Diffstat (limited to 'assets/js/watch.js')
-rw-r--r--assets/js/watch.js7
1 files changed, 0 insertions, 7 deletions
diff --git a/assets/js/watch.js b/assets/js/watch.js
index 4a84769e..99500686 100644
--- a/assets/js/watch.js
+++ b/assets/js/watch.js
@@ -28,13 +28,6 @@ function swap_comments(source) {
}
}
-function commaSeparateNumber(val) {
- while (/(\d+)(\d{3})/.test(val.toString())) {
- val = val.toString().replace(/(\d+)(\d{3})/, "$1" + "," + "$2");
- }
- return val;
-}
-
String.prototype.supplant = function(o) {
return this.replace(/{([^{}]*)}/g, function(a, b) {
var r = o[b];