From 597535a77fa185123d366efc59f3f7f0514807ae Mon Sep 17 00:00:00 2001 From: "Steve L. Nyemba" Date: Thu, 28 Aug 2014 16:04:51 -0500 Subject: [PATCH] utility namespace added --- utils.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 utils.js diff --git a/utils.js b/utils.js new file mode 100644 index 0000000..6d525ce --- /dev/null +++ b/utils.js @@ -0,0 +1,14 @@ +/** + * The Phi Technology LLC, Steve L. Nyemba + * Javascript-x + * + * This is a utiliy class that is used across several namespaces because it implements handy utility functionalities and design patterns + */ +if(!jx){ + var jx = {} +} +jx.utils = {} ; +jx.utils.patterns = {} +jx.utils.patterns.visitor = function(list,pointer){} +jx.utils.patterns.iterator = function(list,ipointer){} +