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

h3-js

Package Overview
Dependencies
Maintainers
1
Versions
27
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

h3-js - npm Package Compare versions

Comparing version 3.0.1 to 3.0.2

dist/out/libh3.js

6

CHANGELOG.md

@@ -7,2 +7,8 @@ # Change Log

## [3.0.2] - 2018-07-26
### Changed
- Updated the core library to v3.0.8 (#10)
- Renamed names of h3.1 or h3-1 to h3 (#4)
- Added engine support for Node 10 (#11)
## [3.0.1] - 2018-06-18

@@ -9,0 +15,0 @@ ### Fixed

2

CONTRIBUTING.md

@@ -21,2 +21,2 @@ # Contributing to the h3-js library

You may also be interested in [contributing to the H3 core library repository](https://github.com/uber/h3/blob/master/CONTRIBUTING.md), which includes the API documentation for H3.
You may also be interested in [contributing to the H3 core library repository](https://github.com/uber/h3/blob/master/CONTRIBUTING.md), which includes the API documentation for H3.

@@ -17,3 +17,3 @@ /*

var C = require('../out/libh3.1');
var C = require('../out/libh3');
var BINDINGS = require('./bindings');

@@ -20,0 +20,0 @@

@@ -17,3 +17,3 @@ /*

const C = require('../out/libh3.1');
const C = require('../out/libh3');
const BINDINGS = require('./bindings');

@@ -20,0 +20,0 @@

{
"name": "h3-js",
"version": "3.0.1",
"version": "3.0.2",
"description": "Emscripten transpiled libh3 'bindings' for Node/Web JS",

@@ -25,9 +25,9 @@ "author": "David Ellis <d.f.ellis@ieee.org>",

"lint": "eslint lib* test/*",
"test": "yarn lint && yarn run test-es6 && yarn run test-dist && yarn run test-parity",
"test": "yarn run dist-test && yarn lint && yarn run test-es6 && yarn run test-dist && yarn run test-parity",
"test-raw": "node test/index.js",
"test-es6": "yarn run test-raw | faucet",
"test-parity": "node test/test-parity.js | faucet",
"test-dist": "yarn run dist-test && node dist/test/index.js | faucet",
"test-dist": "node dist/test/index.js | faucet",
"benchmarks-es6": "node test/benchmarks.js",
"dist": "yarn run dist-clean && mkdir -p dist/out && buble -i lib -o dist/lib && cp out/libh3.1.js dist/out",
"dist": "yarn run dist-clean && mkdir -p dist/out && buble -i lib -o dist/lib && cp out/libh3.js dist/out",
"dist-clean": "rm -rf dist",

@@ -38,6 +38,4 @@ "dist-test": "yarn run dist && buble -i test -o dist/test",

"build-emscripten": "./.build-emscripten.sh",
"cover": "yarn lint && istanbul cover -x out/*.js -- test/index.js",
"prettier": "prettier --write --single-quote --no-bracket-spacing --print-width=100 'lib/**/*.js' 'build/**/*.js' 'test/**/*.js'",
"jenkins-install": "yarn install --ignore-engines --frozen-lockfile",
"jenkins-test": "yarn test && yarn cover && istanbul report cobertura"
"cover": "istanbul cover -x out/*.js -- test/index.js",
"prettier": "prettier --write --single-quote --no-bracket-spacing --print-width=100 'lib/**/*.js' 'build/**/*.js' 'test/**/*.js'"
},

@@ -57,6 +55,6 @@ "devDependencies": {

"engines": {
"node": ">=4 <10",
"node": ">=4",
"npm": ">=3",
"yarn": ">=1.7.0"
"yarn": ">=1.3.0"
}
}
# h3-js
[![Build Status](https://travis-ci.org/uber/h3-js.svg?branch=master)](https://travis-ci.org/uber/h3-js) [![Coverage Status](https://coveralls.io/repos/github/uber/h3-js/badge.svg?branch=master)](https://coveralls.io/github/uber/h3-js?branch=master)
The `h3-js` library provides a pure-JavaScript version of the [H3 Core Library](https://github.com/uber/h3), a hexagon-based geographic grid system. It can be used either in Node >= 4 or in the browser. The core library is transpiled from C using [emscripten](http://kripken.github.io/emscripten-site), offering full parity with the C API and highly efficient operations.

@@ -4,0 +6,0 @@

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