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){} +