Socket
Socket
Sign inDemoInstall

klaw

Package Overview
Dependencies
1
Maintainers
3
Versions
16
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 2.1.0 to 2.1.1

5

CHANGELOG.md

@@ -0,1 +1,6 @@

2.1.1 / 2017-11-18
------------------
- Performance optimization [#27](https://github.com/jprichardson/node-klaw/pull/27)
2.1.0 / 2017-08-10

@@ -2,0 +7,0 @@ ------------------

2

package.json
{
"name": "klaw",
"version": "2.1.0",
"version": "2.1.1",
"description": "File system walker with Readable stream interface.",

@@ -5,0 +5,0 @@ "main": "./src/index.js",

@@ -44,3 +44,4 @@ var assert = require('assert')

if (self.options.pathSorter) pathItems.sort(self.options.pathSorter)
pathItems.forEach(function (pi) { self.paths.push(pi) })
// faster way to do do incremental batch array pushes
self.paths.push.apply(self.paths, pathItems)

@@ -47,0 +48,0 @@ self.push(item)

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc