@fiverr/statsd-client
Advanced tools
Comparing version 1.0.6 to 1.0.7
{ | ||
"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(''); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
25792