]> git.saurik.com Git - cycript.git/commitdiff
Temporarily remove Number.toCYON: way too verbose.
authorJay Freeman (saurik) <saurik@saurik.com>
Mon, 11 Jan 2016 19:15:08 +0000 (11:15 -0800)
committerJay Freeman (saurik) <saurik@saurik.com>
Mon, 11 Jan 2016 19:15:08 +0000 (11:15 -0800)
libcycript.cy

index 8240a44def2fb362e88748f0557aed905e750d9c..6b9e779cb6ff68bbe8324a433bdd294efabaad09 100644 (file)
@@ -72,7 +72,8 @@ $cy_set(Error.prototype, {
 $cy_set(Number.prototype, {
     toCYON: function() {
         if ("$cyt" in this)
 $cy_set(Number.prototype, {
     toCYON: function() {
         if ("$cyt" in this)
-            return `${this.$cyt.toCYON()}(${this.toString()})`;
+            //return `${this.$cyt.toCYON()}(${this.toString()})`;
+            return this.toString();
         return `new Number(${this.toString()})`;
     },
 });
         return `new Number(${this.toString()})`;
     },
 });