Socket
Socket
Sign inDemoInstall

saaf-common

Package Overview
Dependencies
Maintainers
6
Versions
168
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

saaf-common - npm Package Compare versions

Comparing version 1.4.1 to 1.4.2

2

package.json
{
"name": "saaf-common",
"version": "1.4.1",
"version": "1.4.2",
"description": "",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -65,3 +65,4 @@ /*

// state.lookup = localStorageTool.get('lookup')
state.lookup = localStorage.getItem('lookup');
let json = localStorage.getItem('lookup');
state.lookup = json?JSON.parse(json):null;
},

@@ -71,3 +72,3 @@ SET_LOOKUP (state,data) {

// localStorageTool.save('lookup', data)
localStorage.setItem('lookup', data);
localStorage.setItem('lookup', JSON.stringify(data));
},

@@ -74,0 +75,0 @@ LOGOUT (state) {

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