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

paypal-nvp-api

Package Overview
Dependencies
Maintainers
1
Versions
34
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

paypal-nvp-api - npm Package Compare versions

Comparing version 0.1.16 to 0.1.17

2

package.json
{
"version": "0.1.16",
"version": "0.1.17",
"name": "paypal-nvp-api",

@@ -4,0 +4,0 @@ "description": "Node.js wrapper for the Paypal Name-Value Pair — NVP ",

@@ -66,6 +66,7 @@ /**

var formatCurrency = (num) => {
if(!num || !bella.isNumber(num)){
let n = Number(num);
if(!n || !bella.isNumber(n)){
return '$0.00';
}
return '$' + toCurrency(num);
return '$' + toCurrency(n);
}

@@ -72,0 +73,0 @@

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