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

dgeoutils

Package Overview
Dependencies
Maintainers
1
Versions
97
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dgeoutils - npm Package Compare versions

Comparing version 1.0.2 to 1.0.3

4

dist/DPolygon.js

@@ -443,3 +443,3 @@ "use strict";

clone() {
const res = new DPolygon([...this.points.map((r) => r.clone())]);
const res = new DPolygon(this.points.map((r) => r.clone()));
res.holes = this.holes.map((h) => h.clone());

@@ -752,3 +752,3 @@ res.properties = this.properties;

ctx.moveTo(start.x, start.y);
for (let i = 1; i < (steps % this.length); i++) {
for (let i = 1; i <= (steps % this.length); i++) {
const { x, y } = this.p(i);

@@ -755,0 +755,0 @@ ctx.lineTo(x, y);

{
"name": "dgeoutils",
"version": "1.0.2",
"version": "1.0.3",
"description": "",

@@ -5,0 +5,0 @@ "scripts": {

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