Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

screenfull

Package Overview
Dependencies
Maintainers
1
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

screenfull - npm Package Compare versions

Comparing version 3.2.0 to 3.2.1

4

dist/screenfull.js
/*!
* screenfull
* v3.2.0 - 2017-04-16
* v3.2.1 - 2017-06-09
* (c) Sindre Sorhus; MIT License

@@ -9,3 +9,3 @@ */

var document = typeof window === 'undefined' ? {} : window.document;
var document = window && typeof window.document !== 'undefined' ? window.document : {};
var isCommonjs = typeof module !== 'undefined' && module.exports;

@@ -12,0 +12,0 @@ var keyboardAllowed = typeof Element !== 'undefined' && 'ALLOW_KEYBOARD_INPUT' in Element;

{
"name": "screenfull",
"version": "3.2.0",
"version": "3.2.1",
"description": "Simple wrapper for cross-browser usage of the JavaScript Fullscreen API, which lets you bring the page or any element into fullscreen.",

@@ -5,0 +5,0 @@ "license": "MIT",

@@ -160,3 +160,3 @@ # screenfull.js

import {Directive, HostListener} from '@angular/core';
const screenfull = require('screenfull');
import * as screenfull from 'screenfull';

@@ -163,0 +163,0 @@ @Directive({

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc