Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions lib/domain.js
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ class Domain extends EventEmitter {

exports.Domain = Domain;

exports.create = exports.createDomain = function() {
exports.create = exports.createDomain = function createDomain() {
return new Domain();
};

Expand All @@ -193,7 +193,7 @@ exports.active = null;
Domain.prototype.members = undefined;

// Called by process._fatalException in case an error was thrown.
Domain.prototype._errorHandler = function _errorHandler(er) {
Domain.prototype._errorHandler = function(er) {
var caught = false;

if (!util.isPrimitive(er)) {
Expand Down Expand Up @@ -428,7 +428,7 @@ EventEmitter.init = function() {
};

const eventEmit = EventEmitter.prototype.emit;
EventEmitter.prototype.emit = function emit(...args) {
EventEmitter.prototype.emit = function(...args) {
const domain = this.domain;

const type = args[0];
Expand Down