New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@thi.ng/geom-accel

Package Overview
Dependencies
Maintainers
1
Versions
286
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@thi.ng/geom-accel - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

102

CHANGELOG.md

@@ -6,2 +6,13 @@ # Change Log

## [1.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-accel@1.0.0...@thi.ng/geom-accel@1.0.1) (2019-01-21)
### Bug Fixes
* **geom-accel:** add root null check for select/selectKeys() ([8fd5728](https://github.com/thi-ng/umbrella/commit/8fd5728))
# [1.0.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-accel@0.1.11...@thi.ng/geom-accel@1.0.0) (2019-01-21)

@@ -26,93 +37,2 @@

## [0.1.11](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-accel@0.1.10...@thi.ng/geom-accel@0.1.11) (2019-01-02)
**Note:** Version bump only for package @thi.ng/geom-accel
## [0.1.10](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-accel@0.1.9...@thi.ng/geom-accel@0.1.10) (2018-12-29)
**Note:** Version bump only for package @thi.ng/geom-accel
## [0.1.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-accel@0.1.8...@thi.ng/geom-accel@0.1.9) (2018-12-28)
**Note:** Version bump only for package @thi.ng/geom-accel
## [0.1.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-accel@0.1.7...@thi.ng/geom-accel@0.1.8) (2018-12-27)
**Note:** Version bump only for package @thi.ng/geom-accel
## [0.1.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-accel@0.1.6...@thi.ng/geom-accel@0.1.7) (2018-12-17)
**Note:** Version bump only for package @thi.ng/geom-accel
## [0.1.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-accel@0.1.5...@thi.ng/geom-accel@0.1.6) (2018-12-15)
**Note:** Version bump only for package @thi.ng/geom-accel
## [0.1.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-accel@0.1.4...@thi.ng/geom-accel@0.1.5) (2018-12-13)
**Note:** Version bump only for package @thi.ng/geom-accel
## [0.1.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-accel@0.1.3...@thi.ng/geom-accel@0.1.4) (2018-12-08)
**Note:** Version bump only for package @thi.ng/geom-accel
## [0.1.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-accel@0.1.2...@thi.ng/geom-accel@0.1.3) (2018-12-01)
**Note:** Version bump only for package @thi.ng/geom-accel
## [0.1.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-accel@0.1.1...@thi.ng/geom-accel@0.1.2) (2018-11-20)
**Note:** Version bump only for package @thi.ng/geom-accel
## [0.1.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-accel@0.1.0...@thi.ng/geom-accel@0.1.1) (2018-11-08)
**Note:** Version bump only for package @thi.ng/geom-accel
# 0.1.0 (2018-10-21)

@@ -119,0 +39,0 @@

4

kdtree.js

@@ -116,2 +116,4 @@ import { Heap } from "@thi.ng/heaps";

select(q, maxNum, maxDist) {
if (!this.root)
return [];
const res = [];

@@ -126,2 +128,4 @@ const src = this.buildSelection(q, maxNum, maxDist);

selectKeys(q, maxNum, maxDist) {
if (!this.root)
return [];
const res = [];

@@ -128,0 +132,0 @@ const src = this.buildSelection(q, maxNum, maxDist);

@@ -114,2 +114,4 @@ 'use strict';

select(q, maxNum, maxDist) {
if (!this.root)
return [];
const res = [];

@@ -124,2 +126,4 @@ const src = this.buildSelection(q, maxNum, maxDist);

selectKeys(q, maxNum, maxDist) {
if (!this.root)
return [];
const res = [];

@@ -126,0 +130,0 @@ const src = this.buildSelection(q, maxNum, maxDist);

@@ -111,2 +111,4 @@ (function (global, factory) {

select(q, maxNum, maxDist) {
if (!this.root)
return [];
const res = [];

@@ -121,2 +123,4 @@ const src = this.buildSelection(q, maxNum, maxDist);

selectKeys(q, maxNum, maxDist) {
if (!this.root)
return [];
const res = [];

@@ -123,0 +127,0 @@ const src = this.buildSelection(q, maxNum, maxDist);

{
"name": "@thi.ng/geom-accel",
"version": "1.0.0",
"version": "1.0.1",
"description": "TODO",

@@ -35,7 +35,7 @@ "module": "./index.js",

"dependencies": {
"@thi.ng/api": "^5.0.0",
"@thi.ng/heaps": "^1.0.0",
"@thi.ng/math": "^1.0.0",
"@thi.ng/transducers": "^3.0.0",
"@thi.ng/vectors": "^2.0.0"
"@thi.ng/api": "^5.0.1",
"@thi.ng/heaps": "^1.0.1",
"@thi.ng/math": "^1.0.1",
"@thi.ng/transducers": "^3.0.1",
"@thi.ng/vectors": "^2.1.0"
},

@@ -56,3 +56,3 @@ "keywords": [

"sideEffects": false,
"gitHead": "348e7303b8b4d2749a02dd43e3f78d711242e4fe"
"gitHead": "d098aff5e61f96be177289461eec95648cf4e15a"
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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