Remove unused utility function objectWithParent.
authorMike Taylor <mike@indexdata.com>
Tue, 1 Apr 2014 12:22:43 +0000 (13:22 +0100)
committerMike Taylor <mike@indexdata.com>
Tue, 1 Apr 2014 12:22:43 +0000 (13:22 +0100)
We use Object.create instead: not as good, but good enough.

src/mkws-core.js

index de050e0..9668cd1 100644 (file)
@@ -96,16 +96,6 @@ mkws.log = function(string) {
 };
 
 
-mkws.objectWithParent = function(parent) {
-    function thing() {} // Must be function so `prototype' works
-
-    thing.prototype = parent;
-    var res = new thing();
-    thing.prototype = null;
-    return res;
-};
-
-
 // This function is taken from a StackOverflow answer
 // http://stackoverflow.com/questions/901115/how-can-i-get-query-string-values-in-javascript/901144#901144
 mkws.getParameterByName = function(name) {