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

function-exec-sync

Package Overview
Dependencies
Maintainers
1
Versions
90
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

function-exec-sync - npm Package Compare versions

Comparing version
1.4.8
to
1.4.9
+2
-2
package.json
{
"name": "function-exec-sync",
"version": "1.4.8",
"version": "1.4.9",
"description": "Run a function in a node process",

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

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

@@ -38,0 +38,0 @@ "dist"

import type { ExecWorkerOptions } from './types.js';
export type * from './types.js';
export default function functionExecSync(filePath: string, ...args: unknown[]): any;
export default function functionExecSync(options: ExecWorkerOptions, filePath: string, ...args: unknown[]): any;
export type ExecWorkerOptions = {
name?: string;
cwd?: string;
env?: object;
callbacks?: boolean;
execPath?: string;
sleep?: number;
};
export default function unlinkSafe(filename: string): undefined;