summaryrefslogtreecommitdiffstats
path: root/ecomp-portal-FE/client/bower_components/jqTree/src/util.coffee
blob: 2375b14ea83a2bb233885c3c066d5c68d796014a (plain)
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
# Standard javascript indexOf. Implemented here because not all browsers support it.
_indexOf = (array, item) ->
    for value, i in array
        if value == item
            return i
    return -1

indexOf = (array, item) ->
    if array.indexOf
        # The browser supports indexOf
        return array.indexOf(item)
    else
        # Do our own indexOf
        return _indexOf(array, item)

isInt = (n) ->
    return typeof n is 'number' and n % 1 == 0


isFunction = (v) ->
    return typeof v == 'function'


# Escape a string for HTML interpolation; copied from underscore js
html_escape = (string) ->
    return (''+string)
        .replace(/&/g, '&')
        .replace(/</g, '&lt;')
        .replace(/>/g, '&gt;')
        .replace(/"/g, '&quot;')
        .replace(/'/g, '&#x27;')
        .replace(/\//g,'&#x2F;')


getBoolString = (value) ->
    if value
        return 'true'
    else
        return 'false'


module.exports =
    _indexOf: _indexOf
    getBoolString: getBoolString
    html_escape: html_escape
    indexOf: indexOf
    isInt: isInt
    isFunction: isFunction