SVG string parsing error

This code causes this exception: RangeError: Maximum call stack size exceeded

let gearGeo = go.Geometry.parse("FM14.49 9.633c0-.18.062-.362.062-.603s0-.422-.061-.603l1.285-1.025c.123-.12.123-.241.061-.362l-1.224-2.11c-.061-.06-.183-.121-.367-.06l-1.53.602c-.306-.24-.674-.422-1.04-.603l-.246-1.567c.062-.181-.122-.302-.245-.302H8.737c-.122 0-.306.12-.306.241L8.186 4.87c-.367.12-.673.362-1.04.603l-1.47-.603c-.183-.06-.305 0-.428.12L4.024 7.1c-.061.06 0 .242.122.362l1.286.965c0 .181-.061.362-.061.603s0 .422.06.603l-1.285 1.025c-.122.12-.122.241-.06.362l1.223 2.11c.062.061.184.121.368.061l1.53-.603c.306.241.673.422 1.04.603l.245 1.568c0 .12.123.241.306.241h2.449c.122 0 .306-.12.306-.241l.245-1.568c.367-.18.734-.362 1.04-.603l1.53.603c.123.06.306 0 .368-.12l1.224-2.111c.061-.12.061-.302-.061-.362l-1.408-.965zM10 11c-1.086 0-2-.914-2-2 0-1.086.914-2 2-2 1.086 0 2 .914 2 2 0 1.086-.914 2-2 2z");

This is a SVG file which works and I took this string from it.

<svg xmlns="http://www.w3.org/2000/svg" width="20" height="19" viewBox="0 0 20 19"> <path fill="#000" fill-rule="evenodd" d="M14.49 9.633c0-.18.062-.362.062-.603s0-.422-.061-.603l1.285-1.025c.123-.12.123-.241.061-.362l-1.224-2.11c-.061-.06-.183-.121-.367-.06l-1.53.602c-.306-.24-.674-.422-1.04-.603l-.246-1.567c.062-.181-.122-.302-.245-.302H8.737c-.122 0-.306.12-.306.241L8.186 4.87c-.367.12-.673.362-1.04.603l-1.47-.603c-.183-.06-.305 0-.428.12L4.024 7.1c-.061.06 0 .242.122.362l1.286.965c0 .181-.061.362-.061.603s0 .422.06.603l-1.285 1.025c-.122.12-.122.241-.06.362l1.223 2.11c.062.061.184.121.368.061l1.53-.603c.306.241.673.422 1.04.603l.245 1.568c0 .12.123.241.306.241h2.449c.122 0 .306-.12.306-.241l.245-1.568c.367-.18.734-.362 1.04-.603l1.53.603c.123.06.306 0 .368-.12l1.224-2.111c.061-.12.061-.302-.061-.362l-1.408-.965zM10 11c-1.086 0-2-.914-2-2 0-1.086.914-2 2-2 1.086 0 2 .914 2 2 0 1.086-.914 2-2 2z" opacity=".36"/> </svg>

Could you check is problem with GoJS or something else?

Ok I manually corrected SVG path data and got it working. Thanks for valuable info that lead me to solution.