Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@aurigma/design-atoms-text

Package Overview
Dependencies
Maintainers
5
Versions
90
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aurigma/design-atoms-text - npm Package Compare versions

Comparing version 7.1.12 to 7.1.13

4

dist/Utils/PathUtils.js

@@ -58,4 +58,6 @@ import { Path } from "@aurigma/design-atoms-model/Math/Path";

export function getPathLastPoint(path) {
const lastSegment = path.segments[path.segments.length - 1];
let lastSegment = path.segments[path.segments.length - 1];
if (lastSegment.name == "Z")
lastSegment = path.segments[path.segments.length - 2];
return lastSegment.getPoint(lastSegment.length - 1);
}
{
"name": "@aurigma/design-atoms-text",
"version": "7.1.12",
"version": "7.1.13",
"description": "",

@@ -82,3 +82,3 @@ "main": "dist/index.js",

"@aurigma/design-atoms-model": "7.0.10",
"@aurigma/text-whizz": "1.6.36",
"@aurigma/text-whizz": "1.7.25",
"@xmldom/xmldom": "0.7.7"

@@ -85,0 +85,0 @@ },

@@ -70,4 +70,7 @@ import * as TextWhizz from "@aurigma/text-whizz/TextWhizzJS";

export function getPathLastPoint(path: Path): PointF {
const lastSegment = path.segments[path.segments.length-1];
let lastSegment = path.segments[path.segments.length-1];
if (lastSegment.name == "Z")
lastSegment = path.segments[path.segments.length-2];
return lastSegment.getPoint(lastSegment.length-1);
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc