2017-03-27 11:34:32 -07:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
*
|
2018-02-16 18:24:55 -08:00
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
2017-03-27 11:34:32 -07:00
|
|
|
*
|
2018-05-10 19:06:46 -07:00
|
|
|
* @format
|
2017-03-27 11:34:32 -07:00
|
|
|
* @flow
|
|
|
|
*/
|
2018-05-10 19:06:46 -07:00
|
|
|
|
2017-03-27 11:34:32 -07:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
const EventEmitter = require('EventEmitter');
|
|
|
|
const RCTDeviceEventEmitter = require('RCTDeviceEventEmitter');
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Mock the NativeEventEmitter as a normal JS EventEmitter.
|
|
|
|
*/
|
|
|
|
class NativeEventEmitter extends EventEmitter {
|
|
|
|
constructor() {
|
|
|
|
super(RCTDeviceEventEmitter.sharedSubscriber);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = NativeEventEmitter;
|