403Webshell
Server IP : 209.209.40.120  /  Your IP : 216.73.217.112
Web Server : Microsoft-IIS/10.0
System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586
User : NEWWWW$ ( 0)
PHP Version : 8.3.30
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  C:/framework7/cordova/node_modules/cordova-common/src/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : C:/framework7/cordova/node_modules/cordova-common/src/events.js
/**
    Licensed to the Apache Software Foundation (ASF) under one
    or more contributor license agreements.  See the NOTICE file
    distributed with this work for additional information
    regarding copyright ownership.  The ASF licenses this file
    to you under the Apache License, Version 2.0 (the
    "License"); you may not use this file except in compliance
    with the License.  You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing,
    software distributed under the License is distributed on an
    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
    KIND, either express or implied.  See the License for the
    specific language governing permissions and limitations
    under the License.
*/

const EventEmitter = require('events').EventEmitter;

const MAX_LISTENERS = 20;

const INSTANCE_KEY = Symbol.for('org.apache.cordova.common.CordovaEvents');

let EVENTS_RECEIVER = null;

class CordovaEventEmitter extends EventEmitter {
    /**
     * Sets up current instance to forward emitted events to another EventEmitter
     *   instance.
     *
     * @param   {EventEmitter}  [eventEmitter]  The emitter instance to forward
     *   events to. Falsy value, when passed, disables forwarding.
     */
    forwardEventsTo (eventEmitter) {
        // If no argument is specified disable events forwarding
        if (!eventEmitter) {
            EVENTS_RECEIVER = undefined;
            return;
        }

        if (!(eventEmitter instanceof EventEmitter)) {
            throw new Error('Cordova events can be redirected to another EventEmitter instance only');
        }

        // CB-10940 Skipping forwarding to this to avoid infinite recursion.
        // This is the case when the modules are npm-linked.
        if (this !== eventEmitter) {
            EVENTS_RECEIVER = eventEmitter;
        } else {
            // Reset forwarding if we are subscribing to this
            EVENTS_RECEIVER = undefined;
        }
    }

    /**
     * Sets up current instance to forward emitted events to another EventEmitter
     *   instance.
     *
     * @param   {EventEmitter}  [eventEmitter]  The emitter instance to forward
     *   events to. Falsy value, when passed, disables forwarding.
     */
    emit (eventName, ...args) {
        if (EVENTS_RECEIVER) {
            EVENTS_RECEIVER.emit(eventName, ...args);
        }

        return super.emit(eventName, ...args);
    }
}

// This singleton instance pattern is based on the ideas from
// https://derickbailey.com/2016/03/09/creating-a-true-singleton-in-node-js-with-es6-symbols/
if (Object.getOwnPropertySymbols(global).indexOf(INSTANCE_KEY) === -1) {
    const events = new CordovaEventEmitter();
    events.setMaxListeners(MAX_LISTENERS);
    global[INSTANCE_KEY] = events;
}

module.exports = global[INSTANCE_KEY];

Youez - 2016 - github.com/yon3zu
LinuXploit