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

individual

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

individual - npm Package Compare versions

Comparing version 2.0.0 to 3.0.0

one-version.js

17

index.js

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

'use strict';
/*global window, global*/
var root = typeof window !== 'undefined' ?

@@ -5,15 +9,12 @@ window : typeof global !== 'undefined' ?

module.exports = Individual
module.exports = Individual;
function Individual(key, value) {
if (root[key]) {
return root[key]
if (key in root) {
return root[key];
}
Object.defineProperty(root, key, {
value: value
, configurable: true
})
root[key] = value;
return value
return value;
}
{
"name": "individual",
"version": "2.0.0",
"version": "3.0.0",
"description": "Garantueed individual values",

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

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