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

readline

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

readline - npm Package Compare versions

Comparing version 0.0.2 to 0.0.3

2

package.json
{
"name": "readline",
"version": "0.0.2",
"version": "0.0.3",
"description": "simple streaming readline module",

@@ -5,0 +5,0 @@ "main": "readline.js",

@@ -5,2 +5,3 @@ var fs = require('fs');

function readLine (file, opts){

@@ -14,4 +15,3 @@

var readStream = fs.createReadStream(file);
var nlChar = (opts["nlChar"]) ? opts["nlChar"] : "\n";
var nl = nlChar.charCodeAt(0);
var nl = require('os').EOL.charCodeAt(0);
var line = [];

@@ -18,0 +18,0 @@

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