fix: missing jsdoc files

This commit is contained in:
Tobi Schäfer 2020-03-18 10:35:18 +01:00
parent bd552751f5
commit d985d1be0c
13 changed files with 246 additions and 102 deletions

View file

@ -23,6 +23,8 @@
/**
* Copies the properties of this object into a clone.
* @external
* @memberof {Object}
* @param {Object} clone The optional target object
* @param {Boolean} recursive If true child objects are cloned as well, otherwise
* the clone contains references to the child objects
@ -73,6 +75,8 @@ Object.prototype.clone = function(clone, recursive) {
/**
* reduce an extended object (ie. a HopObject)
* to a generic javascript object
* @external
* @memberof {Object}
* @param HopObject the HopObject to be reduced
* @return Object the resulting generic object
*/
@ -90,6 +94,8 @@ Object.prototype.reduce = function(recursive) {
/**
* print the contents of an object for debugging
* @external
* @memberof {Object}
* @param Object the object to dump
* @param Boolean recursive flag (if true, dump child objects, too)
*/