From fbba7df149c43f461da551144617747c6a0bea70 Mon Sep 17 00:00:00 2001 From: Bradley Farias Date: Mon, 4 Apr 2016 12:24:53 -0500 Subject: [PATCH] place pax headers on header.pax to allow custom headers --- extract.js | 1 + 1 file changed, 1 insertion(+) diff --git a/extract.js b/extract.js index 0ddcdbf..6b3b9bf 100644 --- a/extract.js +++ b/extract.js @@ -22,6 +22,7 @@ var emptyStream = function (self, offset) { var mixinPax = function (header, pax) { if (pax.path) header.name = pax.path if (pax.linkpath) header.linkname = pax.linkpath + header.pax = pax return header }