summaryrefslogtreecommitdiffstats
path: root/ecomp-portal-FE/client/bower_components/jqTree/src/util.coffee
diff options
context:
space:
mode:
Diffstat (limited to 'ecomp-portal-FE/client/bower_components/jqTree/src/util.coffee')
-rw-r--r--ecomp-portal-FE/client/bower_components/jqTree/src/util.coffee48
1 files changed, 0 insertions, 48 deletions
diff --git a/ecomp-portal-FE/client/bower_components/jqTree/src/util.coffee b/ecomp-portal-FE/client/bower_components/jqTree/src/util.coffee
deleted file mode 100644
index 2375b14e..00000000
--- a/ecomp-portal-FE/client/bower_components/jqTree/src/util.coffee
+++ /dev/null
@@ -1,48 +0,0 @@
-# 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