diff --git a/lib/basestar.js b/lib/basestar.js index 98624ca..70a4f37 100644 --- a/lib/basestar.js +++ b/lib/basestar.js @@ -29,14 +29,6 @@ Utils.subclass(Basestar, EventEmitter); */ Basestar.prototype.proxyMethods = Utils.proxyFunctionsToObject; -// Public: Triggers a callback and emits an event with provided data -// -// event - name of event to be triggered -// callback - callback function to be triggered -// ...data - additional arguments to be passed to both event/callback -// -// Returns nothing - /** * Triggers the provided callback, and emits an event with the provided data. * diff --git a/lib/utils.js b/lib/utils.js index d257a56..4f5ba22 100644 --- a/lib/utils.js +++ b/lib/utils.js @@ -178,14 +178,6 @@ var Utils = module.exports = { return fallback; }, - // Public: Given a name, and an array of existing names, returns a unique - // name. - // - // name - name that"s colliding with existing names - // arr - array of existing names - // - // Returns the new name as a string - /** * Given a name, and an array of existing names, returns a unique new name *