You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

env-path-key

Package Overview
Dependencies
Maintainers
1
Versions
31
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

env-path-key - npm Package Compare versions

Comparing version
1.1.1
to
1.1.2
+2
-2
package.json
{
"name": "env-path-key",
"version": "1.1.1",
"version": "1.1.2",
"description": "Determines the path key",

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

"main": "dist/cjs/index.js",
"types": "dist/cjs/index.d.cts",
"types": "dist/cjs/index.d.ts",
"files": [

@@ -27,0 +27,0 @@ "dist"

export interface Options {
platform?: string;
env?: NodeJS.ProcessEnv;
}
declare const _default: (options?: Options) => string;
export default _default;
export type Compare = (key: string) => boolean;
export default function startsCaseInsensitiveFn(string: string): Compare;