aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/mist/assets/ext/string.js
blob: 2473b5c36b061df79d47dc164244f1033280fe57 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
String.prototype.pad = function(l, r) {
    if (r === undefined) {
        r = l
        if (!(this.substr(0, 2) == "0x" || /^\d+$/.test(this)))
            l = 0
    }
    var ret = this.bin();
    while (ret.length < l)
        ret = "\0" + ret
    while (ret.length < r)
        ret = ret + "\0"
    return ret;
}

String.prototype.unpad = function() {
    var i = this.length;
    while (i && this[i - 1] == "\0")
        --i
    return this.substr(0, i)
}

String.prototype.bin = function() {
    if (this.substr(0, 2) == "0x") {
        bytes = []
        var i = 2;

        // Check if it's odd - pad with a zero if so.
        if (this.length % 2)
            bytes.push(parseInt(this.substr(i++, 1), 16))

        for (; i < this.length - 1; i += 2)
            bytes.push(parseInt(this.substr(i, 2), 16));

        return String.fromCharCode.apply(String, bytes);
    } else if (/^\d+$/.test(this))
        return bigInt(this.substr(0)).toHex().bin()

    // Otherwise we'll return the "String" object instead of an actual string
    return this.substr(0, this.length)
}

String.prototype.unbin = function() {
    var i, l, o = '';
    for(i = 0, l = this.length; i < l; i++) {
        var n = this.charCodeAt(i).toString(16);
        o += n.length < 2 ? '0' + n : n;
    }

    return "0x" + o;
}

String.prototype.dec = function() {
    return bigInt(this.substr(0)).toString()
}

String.prototype.hex = function() {
    return bigInt(this.substr(0)).toHex()
}