HOME


Mini Shell 1.0
Redirecting to https://devs.lapieza.net/iniciar-sesion Redirecting to https://devs.lapieza.net/iniciar-sesion.
DIR: /proc/1784574/cwd/node_modules/pusher-js/src/core/
Upload File :
Current File : //proc/1784574/cwd/node_modules/pusher-js/src/core/pusher-with-encryption.ts
import Pusher from './pusher';
import { Options, validateOptions } from './options';
import * as nacl from 'tweetnacl';

export default class PusherWithEncryption extends Pusher {
  constructor(app_key: string, options: Options) {
    Pusher.logToConsole = PusherWithEncryption.logToConsole;
    Pusher.log = PusherWithEncryption.log;

    validateOptions(options);
    options.nacl = nacl;
    super(app_key, options);
  }
}