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

@exodus/currency

Package Overview
Dependencies
Maintainers
0
Versions
46
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@exodus/currency - npm Package Compare versions

Comparing version 1.1.0 to 1.1.1

4

CHANGELOG.md

@@ -0,1 +1,5 @@

## 1.1.1 / 2021-06-21
- memoize `toNumberString` method
## 1.1.0 / 2020-12-22

@@ -2,0 +6,0 @@

@@ -55,2 +55,3 @@ "use strict";

this._number = this._createNumber(num);
this._numberString = null;
}

@@ -384,2 +385,4 @@

toNumberString() {
if (this._numberString) return this._numberString;
let number = this._number.toString(10);

@@ -419,2 +422,3 @@

this._numberString = number;
return number;

@@ -421,0 +425,0 @@ }

2

package.json
{
"name": "@exodus/currency",
"version": "1.1.0",
"version": "1.1.1",
"description": "Currency support.",

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

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