Socket
Socket
Sign inDemoInstall

immutable

Package Overview
Dependencies
0
Maintainers
1
Versions
100
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 5.0.0-beta.2 to 5.0.0-beta.3

dist/immutable.es.js

8

package.json
{
"name": "immutable",
"version": "5.0.0-beta.2",
"version": "5.0.0-beta.3",
"description": "Immutable Data Collections",

@@ -19,7 +19,5 @@ "license": "MIT",

"main": "dist/immutable.js",
"module": "dist/es/Immutable.js",
"module": "dist/immutable.es.js",
"sideEffects": false,
"types": "dist/immutable.d.ts",
"sideEffects": [
"./src/CollectionImpl.js"
],
"files": [

@@ -26,0 +24,0 @@ "dist",

@@ -155,5 +155,5 @@ # Immutable collections for JavaScript

///<reference path='./node_modules/immutable/dist/immutable.d.ts'/>
import { Map } from 'immutable';
var map1: Map<string, number>;
map1 = Map({ a: 1, b: 2, c: 3 });
import Immutable from 'immutable';
var map1: Immutable.Map<string, number>;
map1 = Immutable.Map({ a: 1, b: 2, c: 3 });
var map2 = map1.set('b', 50);

@@ -160,0 +160,0 @@ map1.get('b'); // 2

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc