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

hypertune

Package Overview
Dependencies
Maintainers
3
Versions
156
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hypertune - npm Package Compare versions

Comparing version 1.7.18 to 1.7.19

2

CHANGELOG.md
# Changelog
## 1.7.18
## 1.7.19

@@ -5,0 +5,0 @@ - Reduction improvements.

@@ -5,6 +5,3 @@ "use strict";

function getToken() {
if (typeof process === "undefined") {
return null;
}
for (const [key, value] of Object.entries(process.env || {})) {
for (const [key, value] of Object.entries(process.env)) {
if (key.endsWith(shared_1.tokenEnvironmentVariableName) && value) {

@@ -11,0 +8,0 @@ return value;

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
/** Replaced by the value in package.json on build */
exports.default = "1.7.18";
exports.default = "1.7.19";
//# sourceMappingURL=sdkVersion.js.map
{
"name": "hypertune",
"version": "1.7.18",
"version": "1.7.19",
"private": false,

@@ -5,0 +5,0 @@ "main": "./dist/index.js",

import { tokenEnvironmentVariableName } from "../shared";
export default function getToken(): string | null {
if (typeof process === "undefined") {
return null;
}
for (const [key, value] of Object.entries(process.env || {})) {
for (const [key, value] of Object.entries(process.env)) {
if (key.endsWith(tokenEnvironmentVariableName) && value) {

@@ -9,0 +6,0 @@ return value;

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