EventEmitter.js 456 B

12345678910111213
  1. "use strict";
  2. /**
  3. * Copyright (c) 2015-present, Parse, LLC.
  4. * All rights reserved.
  5. *
  6. * This source code is licensed under the BSD-style license found in the
  7. * LICENSE file in the root directory of this source tree. An additional grant
  8. * of patent rights can be found in the PATENTS file in the same directory.
  9. *
  10. * This is a simple wrapper to unify EventEmitter implementations across platforms.
  11. */
  12. module.exports = require('events').EventEmitter;