From db8f7fdd64fc895827a9402eec2d5f4118e02d5b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Ulrich-Matthias=20Sch=C3=A4fer?= Date: Wed, 16 May 2018 01:33:59 +0200 Subject: [PATCH] fixed small typo --- src/morph.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/morph.js b/src/morph.js index b16be76..040e245 100644 --- a/src/morph.js +++ b/src/morph.js @@ -68,7 +68,7 @@ SVG.Morphable = SVG.invent({ } else if (Array.isArray(value)) { this.type(SVG.Array) - } else of (typeof value === 'object') { + } else if (typeof value === 'object') { this.type(SVG.ObjectBag) } else { -- 2.39.5