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, 48 insertions, 0 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
new file mode 100644
index 00000000..2375b14e
--- /dev/null
+++ b/ecomp-portal-FE/client/bower_components/jqTree/src/util.coffee
@@ -0,0 +1,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