Socket
Socket
Sign inDemoInstall

jose

Package Overview
Dependencies
Maintainers
1
Versions
206
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jose - npm Package Compare versions

Comparing version 3.1.1 to 3.1.2

7

CHANGELOG.md

@@ -5,2 +5,9 @@ # Changelog

## [3.1.2](https://github.com/panva/jose/compare/v3.1.1...v3.1.2) (2020-11-24)
### Bug Fixes
* handle globalThis undefined in legacy browsers ([b83c59b](https://github.com/panva/jose/commit/b83c59bb43ad14ac932cd0c662f7dfc2c4c62753))
## [3.1.1](https://github.com/panva/jose/compare/v3.1.0...v3.1.1) (2020-11-24)

@@ -7,0 +14,0 @@

4

dist/browser/runtime/global.js
function getGlobal() {
if (typeof globalThis !== 'undefined')
return globalThis;
if (typeof self !== 'undefined')

@@ -8,2 +10,2 @@ return self;

}
export default globalThis || getGlobal();
export default getGlobal();
{
"name": "jose",
"version": "3.1.1",
"version": "3.1.2",
"description": "JSON Web Almost Everything - JWA, JWS, JWE, JWK, JWT, JWKS with no dependencies",

@@ -5,0 +5,0 @@ "keywords": [

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc