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

ali-oss

Package Overview
Dependencies
Maintainers
3
Versions
127
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ali-oss - npm Package Compare versions

Comparing version 4.4.3 to 4.4.4

7

History.md
4.4.4 / 2016-06-04
==================
* deps: use ^
* Fix isGeneratorFunction and Date format problems in IE10 (#118)
* chore(package): update humanize-ms to version 1.2.0
4.4.3 / 2016-05-17

@@ -3,0 +10,0 @@ ==================

5

lib/client.js

@@ -31,2 +31,3 @@ /**

var pkg = require('../package.json');
var dateFormat = require('dateformat');

@@ -219,5 +220,3 @@ /**

var headers = {
// For compatibility with IE10
// Also MDN says `toGMTString()` is deprecated
'x-oss-date': new Date().toUTCString().replace('UTC', 'GMT'),
'x-oss-date': dateFormat(new Date(), 'UTC:ddd, dd mmm yyyy HH:MM:ss \'GMT\''),
'x-oss-user-agent': userAgent,

@@ -224,0 +223,0 @@ 'User-Agent': userAgent

4

lib/wrapper.js

@@ -21,3 +21,3 @@ /**

function isGenerator(obj) {
return 'function' == typeof obj.next && 'function' == typeof obj.throw;
return obj && 'function' == typeof obj.next && 'function' == typeof obj.throw;
}

@@ -29,3 +29,3 @@

if ('GeneratorFunction' === constructor.name || 'GeneratorFunction' === constructor.displayName) return true;
return isGenerator(constructor.prototype);
return isGenerator(constructor.prototype) || isGenerator(obj.prototype);
}

@@ -32,0 +32,0 @@

{
"name": "ali-oss",
"version": "4.4.3",
"version": "4.4.4",
"description": "aliyun oss(open storage service) node client",

@@ -45,9 +45,9 @@ "main": "lib/client.js",

"aliasify": "^2.0.0",
"autod": "^2.4.2",
"autod": "^2.6.1",
"babel-plugin-transform-runtime": "^6.8.0",
"babel-preset-es2015": "^6.3.13",
"babel-runtime": "^6.6.1",
"babelify": "^7.2.0",
"babelify": "^7.3.0",
"bluebird": "^3.1.5",
"browserify": "^13.0.0",
"browserify": "^13.0.1",
"co-fs": "^1.2.0",

@@ -57,29 +57,30 @@ "crypto-browserify": "^1.0.9",

"git-pre-hooks": "^1.2.0",
"istanbul": "^0.4.2",
"istanbul": "^0.4.3",
"mm": "^1.3.5",
"mocha": "^2.4.2",
"should": "^8.2.0",
"thunk-mocha": "^1.0.2",
"mocha": "^2.5.3",
"should": "^9.0.0",
"thunk-mocha": "^1.0.3",
"uglify-js": "^2.6.2"
},
"dependencies": {
"address": "~1.0.0",
"agentkeepalive": "~2.1.1",
"co": "~4.6.0",
"co-defer": "~1.0.0",
"copy-to": "~2.0.1",
"debug": "~2.2.0",
"destroy": "~1.0.4",
"end-or-error": "~1.0.1",
"get-ready": "~1.0.0",
"humanize-ms": "~1.0.2",
"is-type-of": "~1.0.0",
"merge-descriptors": "~1.0.1",
"mime": "~1.3.4",
"platform": "~1.3.1",
"sdk-base": "~2.0.1",
"urllib": "~2.9.1",
"utility": "~1.8.0",
"xml2js": "~0.4.16"
"address": "^1.0.0",
"agentkeepalive": "^2.1.1",
"co": "^4.6.0",
"co-defer": "^1.0.0",
"copy-to": "^2.0.1",
"dateformat": "^1.0.12",
"debug": "^2.2.0",
"destroy": "^1.0.4",
"end-or-error": "^1.0.1",
"get-ready": "^1.0.0",
"humanize-ms": "^1.2.0",
"is-type-of": "^1.0.0",
"merge-descriptors": "^1.0.1",
"mime": "^1.3.4",
"platform": "^1.3.1",
"sdk-base": "^2.0.1",
"urllib": "^2.9.1",
"utility": "^1.8.0",
"xml2js": "^0.4.16"
}
}
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