We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5dacf56 commit c0cfb4fCopy full SHA for c0cfb4f
1 file changed
lib/archivers/zip/zip-archive-entry.js
@@ -218,6 +218,10 @@ ZipArchiveEntry.prototype.isDirectory = function() {
218
return this.getName().slice(-1) === '/';
219
};
220
221
+ZipArchiveEntry.prototype.isUnixSymlink = function() {
222
+ return (this.getUnixMode() & constants.S_IFLINK) === constants.S_IFLINK;
223
+};
224
+
225
ZipArchiveEntry.prototype.isZip64 = function() {
226
return this.csize > constants.ZIP64_MAGIC || this.size > constants.ZIP64_MAGIC;
227
0 commit comments