@next-core/brick-kit 2.181.0 → 2.181.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6003,7 +6003,8 @@
6003
6003
  isFileType,
6004
6004
  request
6005
6005
  } = _ref;
6006
- var isDownload = isFileType && method === "saveAs";
6006
+ // `saveAs` requires the first argument to be the filename.
6007
+ var isDownload = method === "saveAs";
6007
6008
  var fileName;
6008
6009
  if (isDownload) {
6009
6010
  fileName = originalArgs.shift();