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

@fiverr/statsd-client

Package Overview
Dependencies
Maintainers
3
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@fiverr/statsd-client - npm Package Compare versions

Comparing version 1.0.6 to 1.0.7

2

package.json
{
"name": "@fiverr/statsd-client",
"version": "1.0.6",
"version": "1.0.7",
"description": "📈 A feature packed, highly customisable StatsD client",

@@ -5,0 +5,0 @@ "keywords": [

const DELIMETER_KEY_VALUE = ':';
const DELIMETER_METRIC_TYPE = '|';
const DELIMETER = '|';
const DELIMETER_RATE = '@';

@@ -13,8 +13,8 @@ const DELIMETER_TAGS = '#';

value,
DELIMETER_METRIC_TYPE,
DELIMETER,
type
];
rate && parts.push(DELIMETER_RATE, rate);
tags && parts.push(DELIMETER_TAGS, tagsString(tags));
rate && parts.push(DELIMETER, DELIMETER_RATE, rate);
tags && parts.push(DELIMETER, DELIMETER_TAGS, tagsString(tags));

@@ -21,0 +21,0 @@ return parts.join('');

const DELIMETER_KEY_VALUE = ':';
const DELIMETER_METRIC_TYPE = '|';
const DELIMETER = '|';
const DELIMETER_RATE = '@';

@@ -15,7 +15,7 @@ const DELIMETER_TAGS = ';';

value,
DELIMETER_METRIC_TYPE,
DELIMETER,
type
);
rate && parts.push(DELIMETER_RATE, rate);
rate && parts.push(DELIMETER, DELIMETER_RATE, rate);

@@ -22,0 +22,0 @@ return parts.join('');

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