Skip to content

Commit

Permalink
refactor(common): rebase on master changes
Browse files Browse the repository at this point in the history
  • Loading branch information
sgtcoolguy committed Apr 8, 2019
1 parent dbc13b5 commit 1744d15
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -178,3 +178,4 @@ EventEmitter.defaultMaxListeners = 10;
EventEmitter.listenerCount = function (emitter, eventName) {
return emitter.listenerCount(eventName);
};
EventEmitter.EventEmitter = EventEmitter;
2 changes: 2 additions & 0 deletions common/Resources/ti.internal/extensions/node/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import os from './os';
import tty from './tty';
import util from './util';
import assert from './assert';
import events from './events';

// hook our implementations to get loaded by require
import { bindObjectToCoreModuleId } from '../binding';
Expand All @@ -13,3 +14,4 @@ bindObjectToCoreModuleId('os', os);
bindObjectToCoreModuleId('tty', tty);
bindObjectToCoreModuleId('util', util);
bindObjectToCoreModuleId('assert', assert);
bindObjectToCoreModuleId('events', events);

0 comments on commit 1744d15

Please sign in to comment.