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

icebox

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

icebox - npm Package Compare versions

Comparing version 0.1.4 to 0.1.5

3

lib/icebox.js

@@ -45,2 +45,5 @@

}
if (thawed.thawed) {
thawed.thawed();
}
return thawed;

@@ -47,0 +50,0 @@ }

2

package.json
{
"name": "icebox",
"version": "0.1.4",
"version": "0.1.5",
"description": "Object serialization library",

@@ -5,0 +5,0 @@ "main": "lib/icebox.js",

@@ -36,2 +36,15 @@ # icebox.js - A simple object serialization library

## thawed() callback
Whenever an object is restored from the frozen representation, its
thawed() function is invoked, if it exists. The thawed() function can
be used for bookkeeping, but it must not assume that anything beyond
the current object has been thawed() yet.
## Additional notes
Icebox tags each object that it serializes with an ID in order to
resolve circles. These ids are not available outside of the
serialization process, and applications must use their own object IDs,
if desired, as icebox needs to have full control over its own ID
space.
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