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

navigator.sendbeacon

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

navigator.sendbeacon - npm Package Compare versions

Comparing version 0.0.17 to 0.0.18

6

dist/navigator.sendbeacon.cjs.js

@@ -30,7 +30,9 @@ 'use strict';

if (!('navigator' in this && typeof this.navigator.sendBeacon === 'function')) {
if (!('navigator' in this)) {
this.navigator = {};
}
this.navigator.sendBeacon = sendBeacon.bind(this);
if (typeof this.navigator.sendBeacon !== 'function') {
this.navigator.sendBeacon = sendBeacon.bind(this);
}
}

@@ -37,0 +39,0 @@

@@ -28,7 +28,9 @@ function _typeof(obj) {

if (!('navigator' in this && typeof this.navigator.sendBeacon === 'function')) {
if (!('navigator' in this)) {
this.navigator = {};
}
this.navigator.sendBeacon = sendBeacon.bind(this);
if (typeof this.navigator.sendBeacon !== 'function') {
this.navigator.sendBeacon = sendBeacon.bind(this);
}
}

@@ -35,0 +37,0 @@

@@ -34,7 +34,9 @@ (function (global, factory) {

if (!('navigator' in this && typeof this.navigator.sendBeacon === 'function')) {
if (!('navigator' in this)) {
this.navigator = {};
}
this.navigator.sendBeacon = sendBeacon.bind(this);
if (typeof this.navigator.sendBeacon !== 'function') {
this.navigator.sendBeacon = sendBeacon.bind(this);
}
}

@@ -41,0 +43,0 @@

@@ -1,1 +0,1 @@

!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e():"function"==typeof define&&define.amd?define(e):e()}(0,function(){"use strict";function t(e){return(t="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(e)}var e=function(t){return"string"==typeof t},n=function(t){return t instanceof Blob};(function(){if(function(){return"navigator"in this&&"sendBeacon"in this.navigator}.call(this))return;"navigator"in this&&"function"==typeof this.navigator.sendBeacon||(this.navigator={});this.navigator.sendBeacon=function(t,o){var i=this.event&&this.event.type,r="unload"===i||"beforeunload"===i,s="XMLHttpRequest"in this?new XMLHttpRequest:new ActiveXObject("Microsoft.XMLHTTP");s.open("POST",t,!r),s.withCredentials=!0,s.setRequestHeader("Accept","*/*"),e(o)?(s.setRequestHeader("Content-Type","text/plain;charset=UTF-8"),s.responseType="text/plain"):n(o)&&o.type&&s.setRequestHeader("Content-Type",o.type);try{s.send(o)}catch(t){return!1}return!0}.bind(this)}).call("object"===("undefined"==typeof window?"undefined":t(window))?window:{})});
!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e():"function"==typeof define&&define.amd?define(e):e()}(0,function(){"use strict";function t(e){return(t="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(e)}var e=function(t){return"string"==typeof t},n=function(t){return t instanceof Blob};(function(){if(function(){return"navigator"in this&&"sendBeacon"in this.navigator}.call(this))return;"navigator"in this||(this.navigator={});"function"!=typeof this.navigator.sendBeacon&&(this.navigator.sendBeacon=function(t,o){var i=this.event&&this.event.type,r="unload"===i||"beforeunload"===i,s="XMLHttpRequest"in this?new XMLHttpRequest:new ActiveXObject("Microsoft.XMLHTTP");s.open("POST",t,!r),s.withCredentials=!0,s.setRequestHeader("Accept","*/*"),e(o)?(s.setRequestHeader("Content-Type","text/plain;charset=UTF-8"),s.responseType="text/plain"):n(o)&&o.type&&s.setRequestHeader("Content-Type",o.type);try{s.send(o)}catch(t){return!1}return!0}.bind(this))}).call("object"===("undefined"==typeof window?"undefined":t(window))?window:{})});
{
"name": "navigator.sendbeacon",
"version": "0.0.17",
"version": "0.0.18",
"description": "Polyfill for navigator.sendBeacon()",

@@ -5,0 +5,0 @@ "main": "dist/navigator.sendbeacon.cjs.js",

@@ -9,7 +9,9 @@ const isString = val => typeof val === 'string'

if (!('navigator' in this && typeof this.navigator.sendBeacon === 'function')) {
if (!('navigator' in this)) {
this.navigator = {}
}
this.navigator.sendBeacon = sendBeacon.bind(this)
if (typeof this.navigator.sendBeacon !== 'function') {
this.navigator.sendBeacon = sendBeacon.bind(this)
}
}

@@ -16,0 +18,0 @@

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