New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@alwatr/local-storage

Package Overview
Dependencies
Maintainers
2
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@alwatr/local-storage - npm Package Compare versions

Comparing version 1.0.1 to 1.0.2

10

CHANGELOG.md

@@ -6,2 +6,6 @@ # Change Log

## [1.0.2](https://github.com/Alwatr/nanolib/compare/@alwatr/local-storage@1.0.1...@alwatr/local-storage@1.0.2) (2024-01-31)
**Note:** Version bump only for package @alwatr/local-storage
## [1.0.1](https://github.com/Alwatr/nanolib/compare/@alwatr/local-storage@1.0.0...@alwatr/local-storage@1.0.1) (2024-01-24)

@@ -15,7 +19,7 @@

* **local-storage:** Rewrite local storage module ([5ed0f39](https://github.com/Alwatr/nanolib/commit/5ed0f39d090c027bb600a5d061ede887b4669198)) by @AliMD
* **local-storage:** separate package from `@alwatr/util` ([4cc22ed](https://github.com/Alwatr/nanolib/commit/4cc22eda8d89f291783eef3b8917434489b628e1)) by @njfamirm
- **local-storage:** Rewrite local storage module ([5ed0f39](https://github.com/Alwatr/nanolib/commit/5ed0f39d090c027bb600a5d061ede887b4669198)) by @AliMD
- **local-storage:** separate package from `@alwatr/util` ([4cc22ed](https://github.com/Alwatr/nanolib/commit/4cc22eda8d89f291783eef3b8917434489b628e1)) by @njfamirm
### Bug Fixes
* **local-storage:** Remove unused dependency and update tsconfig references ([b1caaea](https://github.com/Alwatr/nanolib/commit/b1caaea8565cd497d31d91e4e2ea1becd84a82a4)) by @AliMD
- **local-storage:** Remove unused dependency and update tsconfig references ([b1caaea](https://github.com/Alwatr/nanolib/commit/b1caaea8565cd497d31d91e4e2ea1becd84a82a4)) by @AliMD
{
"name": "@alwatr/local-storage",
"version": "1.0.1",
"version": "1.0.2",
"description": "`localJsonStorage` is a utility object in our TypeScript package that provides methods for interacting with the local storage in a structured and versioned manner.",

@@ -70,9 +70,9 @@ "author": "S. Ali Mihandoost <ali.mihandoost@gmail.com>",

"devDependencies": {
"@alwatr/nano-build": "^1.3.2",
"@alwatr/nano-build": "^1.3.3",
"@alwatr/prettier-config": "^1.0.4",
"@alwatr/tsconfig-base": "^1.1.1",
"@alwatr/type-helper": "^1.2.0",
"@alwatr/tsconfig-base": "^1.1.2",
"@alwatr/type-helper": "^1.2.1",
"typescript": "^5.3.3"
},
"gitHead": "3486060abc5f331a3b8c78da7f1d671ba1139b5d"
"gitHead": "54726b7ac06d4a6ffb42731b58e8d976de1211bd"
}

@@ -24,3 +24,3 @@ # localJsonStorage

```typescript
import { localJsonStorage } from '@alwatr/local-storage';
import {localJsonStorage} from '@alwatr/local-storage';
```

@@ -31,3 +31,3 @@

```javascript
const { localJsonStorage } = require('@alwatr/local-storage');
const {localJsonStorage} = require('@alwatr/local-storage');
```

@@ -40,3 +40,3 @@

```typescript
const defaultValue = { a: 1, b: 2 };
const defaultValue = {a: 1, b: 2};
const value = localJsonStorage.getItem('item-name', defaultValue);

@@ -50,3 +50,3 @@ ```

```typescript
const value = { a: 1, b: 2 };
const value = {a: 1, b: 2};
localJsonStorage.setItem('item-name', value);

@@ -53,0 +53,0 @@ ```

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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