Socket
Socket
Sign inDemoInstall

runtime-shared

Package Overview
Dependencies
Maintainers
3
Versions
85
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

runtime-shared - npm Package Compare versions

Comparing version 0.5.0-beta to 0.5.0

6

dist/shared.function.js

@@ -682,3 +682,4 @@ module.exports = function() {

function encodeKey(key) {
return Number.isNaN(key) ? NaNMarker : key;
// Number.isNaN not extist in iOS 8.x
return key !== key ? NaNMarker : key;
}

@@ -846,3 +847,4 @@

function encodeVal(data) {
return Number.isNaN(data) ? NaNMarker : data;
// Number.isNaN not extist in iOS 8.x
return data !== data ? NaNMarker : data;
}

@@ -849,0 +851,0 @@

@@ -17,3 +17,4 @@ 'use strict';

function encodeKey(key) {
return Number.isNaN(key) ? NaNMarker : key;
// Number.isNaN not extist in iOS 8.x
return key !== key ? NaNMarker : key;
}

@@ -20,0 +21,0 @@

@@ -19,3 +19,4 @@ 'use strict';

function encodeVal(data) {
return Number.isNaN(data) ? NaNMarker : data;
// Number.isNaN not extist in iOS 8.x
return data !== data ? NaNMarker : data;
}

@@ -22,0 +23,0 @@

{
"name": "runtime-shared",
"version": "0.5.0-beta",
"version": "0.5.0",
"description": "Shared Runtime.",

@@ -5,0 +5,0 @@ "license": "BSD-3-Clause",

@@ -11,3 +11,4 @@ /* eslint no-extend-native: "off" */

function encodeKey(key) {
return Number.isNaN(key) ? NaNMarker : key;
// Number.isNaN not extist in iOS 8.x
return key !== key ? NaNMarker : key;
}

@@ -14,0 +15,0 @@

@@ -13,3 +13,4 @@ /* eslint no-extend-native: "off" */

function encodeVal(data) {
return Number.isNaN(data) ? NaNMarker : data;
// Number.isNaN not extist in iOS 8.x
return data !== data ? NaNMarker : data;
}

@@ -16,0 +17,0 @@

Sorry, the diff of this file is not supported yet

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