const DownloadStrategy = function (strategy, target) {
  const that = {};
  that.strategy = strategy;
  that.target = target;
  return that;