diff options
Diffstat (limited to 'lib/mozillabzpage.js')
-rw-r--r-- | lib/mozillabzpage.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/mozillabzpage.js b/lib/mozillabzpage.js index 5a864f9..6eaa869 100644 --- a/lib/mozillabzpage.js +++ b/lib/mozillabzpage.js @@ -1,13 +1,14 @@ // Released under the MIT/X11 license // http://www.opensource.org/licenses/mit-license.php "use strict"; +var utilMod = require("util"); -// ==================================================================================== +// ============================================================================ // MozillaBugzilla object exports.MozillaBugzilla = function MozillaBugzilla (doc) { BZPage.call(this, doc) }; -MozillaBugzilla.prototype = hlpr.heir(BZPage); +MozillaBugzilla.prototype = utilMod.heir(BZPage); MozillaBugzilla.prototype.constructor = MozillaBugzilla; |