pathseg icon indicating copy to clipboard operation
pathseg copied to clipboard

SVGPathSeg polyfill

Results 3 pathseg issues
Sort by recently updated
recently updated
newest added

Hi @progers, I’ve created a PR for adding the removed types in TypeScript 4.4 used in this library and it could be useful. Can you have a look on that?...

TypeScript 4.4 removed all the Types used with this library. I recovered them from the TypeScript 4.3.5 version and I added them since they could be part of the polyfill....

`pathSegTypeAsLetter` property of a `SVGPathSegClosePath` object should always be uppercase "Z" (not lowercase "z") like web browsers does. `this.pathSegTypeAsLetter = typeAsLetter=='z'?'Z':typeAsLetter;`