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

tar-async

Package Overview
Dependencies
Maintainers
0
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tar-async - npm Package Compare versions

Comparing version 0.2.5 to 0.3.0

7

lib/tar.js

@@ -9,4 +9,2 @@ /*

require('futures/forEachAsync');
var fs = require('fs'),

@@ -16,3 +14,4 @@ path = require('path'),

header = require("./header"),
utils = require("./utils");
utils = require("./utils"),
forEachAsync = require('futures').forEachAsync;

@@ -154,3 +153,3 @@ function Tar(opt) {

files.forEachAsync(function (next, filename) {
forEachAsync(files, function (next, filename) {
// make sure we get through all cases

@@ -157,0 +156,0 @@ if (error) {

{
"name": "tar-async",
"description": "Creates tar files asynchronously in chunks",
"version": "0.2.5",
"version": "0.3.0",
"homepage": "http://github.com/beatgammit/node-tar-async",

@@ -6,0 +6,0 @@ "repository": {

@@ -25,3 +25,3 @@ Intro

The only external module that Tar uses is futures, and only the forEachAsync method at that. This module will add to the Array prototype, so any for..in loops will need to be converted to forEach loops. This module is used to allow for graceful handling of asynchronous calls in a forEach loop.
The only external module that Tar uses is futures, and only the forEachAsync method at that. This module is used to allow for graceful handling of asynchronous calls in a forEach loop.

@@ -28,0 +28,0 @@ This module can be installed from npm:

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