Socket
Socket
Sign inDemoInstall

react-fast-compare

Package Overview
Dependencies
0
Maintainers
34
Versions
15
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 3.0.1 to 3.0.2

4

CHANGELOG.md
# Changelog
## 3.0.2 (2020-05-01)
- [#71](https://github.com/FormidableLabs/react-fast-compare/pull/71). Extend the `hasArrayBuffer` check to support older IE 11 versions.
## 3.0.1 (2020-02-05)

@@ -4,0 +8,0 @@

2

index.js

@@ -6,3 +6,3 @@ /* global Map:readonly, Set:readonly, ArrayBuffer:readonly */

var hasSet = typeof Set === 'function';
var hasArrayBuffer = typeof ArrayBuffer === 'function';
var hasArrayBuffer = typeof ArrayBuffer === 'function' && !!ArrayBuffer.isView;

@@ -9,0 +9,0 @@ // Note: We **don't** need `envHasBigInt64Array` in fde es6/index.js

{
"name": "react-fast-compare",
"version": "3.0.1",
"version": "3.0.2",
"description": "Fastest deep equal comparison for React. Great for React.memo & shouldComponentUpdate. Also really fast general-purpose deep comparison.",

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

@@ -163,4 +163,4 @@ # react-fast-compare

[appveyor_site]: https://ci.appveyor.com/project/FormidableLabs/react-fast-compare
[bundle_img]: https://img.shields.io/badge/minzipped%20size-622%20B-flatgreen.svg
[bundle_img]: https://img.shields.io/badge/minzipped%20size-627%20B-flatgreen.svg
[downloads_img]: https://img.shields.io/npm/dm/react-fast-compare.svg
[maintenance_img]: https://img.shields.io/badge/maintenance-active-flatgreen.svg
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