postcss-convert-values 5.1.1 → 5.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "postcss-convert-values",
3
- "version": "5.1.1",
3
+ "version": "5.1.2",
4
4
  "description": "Convert values with PostCSS (e.g. ms -> s)",
5
5
  "main": "src/index.js",
6
6
  "types": "types/index.d.ts",
@@ -37,7 +37,7 @@ function dropLeadingZero(number) {
37
37
  /**
38
38
  * @param {number} number
39
39
  * @param {string} originalUnit
40
- * @param {Map<string, number>} conversions
40
+ * @param {lengthConv | timeConv | angleConv} conversions
41
41
  * @return {string}
42
42
  */
43
43
  function transform(number, originalUnit, conversions) {