]> source.dussan.org Git - svg.js.git/commitdiff
renamed unit() to `convert()` to avoid name collision 3.0.9
authorUlrich-Matthias Schäfer <ulima.ums@googlemail.com>
Mon, 14 Jan 2019 08:15:30 +0000 (09:15 +0100)
committerUlrich-Matthias Schäfer <ulima.ums@googlemail.com>
Mon, 14 Jan 2019 08:15:30 +0000 (09:15 +0100)
CHANGELOG.md
package.json
src/types/SVGNumber.js

index 503e8a1ae67f4cde5f633a8506c16500f472c3af..af23509596c5015f0daf33fe7e9937ead0a4c4aa 100644 (file)
@@ -7,6 +7,11 @@ The document follows the conventions described in [“Keep a CHANGELOG”](http:
 
 ====
 
+## [3.0.9] - 2018-01-14
+
+### Fixed
+ - renamed `unit()` to `convert()` due to name collision
+
 ## [3.0.8] - 2018-01-13
 
 ### Fixed
index 0028f7cbe3049e63669f3e25532d4d3d53be5be0..8c582d12f5587814e22744ee147b5c7d86690d9b 100644 (file)
@@ -1,6 +1,6 @@
 {
   "name": "@svgdotjs/svg.js",
-  "version": "3.0.8",
+  "version": "3.0.9",
   "description": "A lightweight library for manipulating and animating SVG.",
   "url": "https://svgdotjs.github.io/",
   "homepage": "https://svgdotjs.github.io/",
index 4ead46b26f8f040e711947517d8658de52509991..fedb00e830d37aed70ce351a80663bad3dffad02 100644 (file)
@@ -89,8 +89,7 @@ export default class SVGNumber {
     return new SVGNumber(this / number, this.unit || number.unit)
   }
 
-  unit (unit) {
-    if (unit == null) return this.unit
+  convert (unit) {
     return new SVGNumber(this.value, unit)
   }
 }