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

@tapjs/processinfo

Package Overview
Dependencies
Maintainers
2
Versions
53
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@tapjs/processinfo - npm Package Compare versions

Comparing version 3.0.0 to 3.0.1

3

dist/cjs/line-lengths.d.ts

@@ -1,3 +0,4 @@

export declare const saveLineLengths: (filename: string, content: string) => void;
/// <reference types="node" />
export declare const saveLineLengths: (filename: string, content?: string | Buffer) => void;
export declare const getLineLengths: (filename: string) => number[] | undefined;
//# sourceMappingURL=line-lengths.d.ts.map

@@ -12,2 +12,6 @@ "use strict";

const saveLineLengths = (filename, content) => {
if (content === undefined)
return;
if (typeof content === 'object')
content = String(content);
if (filename.startsWith('file://'))

@@ -14,0 +18,0 @@ filename = (0, url_1.fileURLToPath)(filename);

@@ -1,3 +0,4 @@

export declare const saveLineLengths: (filename: string, content: string) => void;
/// <reference types="node" />
export declare const saveLineLengths: (filename: string, content?: string | Buffer) => void;
export declare const getLineLengths: (filename: string) => number[] | undefined;
//# sourceMappingURL=line-lengths.d.ts.map

@@ -9,2 +9,6 @@ // TODO: Refactor once https://github.com/nodejs/node/issues/48460 fixed

export const saveLineLengths = (filename, content) => {
if (content === undefined)
return;
if (typeof content === 'object')
content = String(content);
if (filename.startsWith('file://'))

@@ -11,0 +15,0 @@ filename = fileURLToPath(filename);

{
"name": "@tapjs/processinfo",
"version": "3.0.0",
"version": "3.0.1",
"files": [

@@ -5,0 +5,0 @@ "dist"

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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