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

@vbarbarosh/node-helpers

Package Overview
Dependencies
Maintainers
1
Versions
119
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vbarbarosh/node-helpers - npm Package Compare versions

Comparing version 2.0.3 to 2.1.0

src/fs_read_lines.js

2

package.json

@@ -5,3 +5,3 @@ {

"name": "@vbarbarosh/node-helpers",
"version": "2.0.3",
"version": "2.1.0",
"description": "A set of helpers for JavaScript/Node.js",

@@ -8,0 +8,0 @@ "files": [

const fs_read = require('./fs_read');
async function fs_read_buffer(file)
function fs_read_buffer(file)
{
return await fs_read(file);
return fs_read(file);
}
module.exports = fs_read_buffer;
const fs_read = require('./fs_read');
async function fs_read_utf8(file)
function fs_read_utf8(file)
{
return await fs_read(file, {encoding: 'utf8'});
return fs_read(file, {encoding: 'utf8'});
}
module.exports = fs_read_utf8;
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