File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change
1
+ exports . EventEmitter = process . EventEmitter ;
2
+
3
+ exports . Promise = removed ( 'Promise has been removed. See http://groups.google.com/group/nodejs/msg/0c483b891c56fea2 for more information.' ) ;
4
+ process . Promise = exports . Promise ;
Original file line number Diff line number Diff line change @@ -1126,6 +1126,7 @@ static Handle<Value> Binding(const Arguments& args) {
1126
1126
// TODO DRY/automate this?
1127
1127
exports->Set (String::New (" assert" ), String::New (native_assert));
1128
1128
exports->Set (String::New (" dns" ), String::New (native_dns));
1129
+ exports->Set (String::New (" events" ), String::New (native_events));
1129
1130
exports->Set (String::New (" file" ), String::New (native_file));
1130
1131
exports->Set (String::New (" fs" ), String::New (native_fs));
1131
1132
exports->Set (String::New (" http" ), String::New (native_http));
You can’t perform that action at this time.
0 commit comments