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

amalgamatic

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

amalgamatic - npm Package Compare versions

Comparing version 4.0.0 to 4.0.1

14

CHANGELOG.md

@@ -0,1 +1,15 @@

# 2014-09-25
5 commits against 3 issues, over 3 days [`17ee010`](https://github.com/ucsf-ckm/amalgamatic/commit/17ee010)⎆[`81c6b7a`](https://github.com/ucsf-ckm/amalgamatic/commit/81c6b7a)
## [**4.0.1**](https://github.com/ucsf-ckm/amalgamatic/issues?milestone=5&state=closed)
- [**#40**](https://github.com/ucsf-ckm/amalgamatic/issues/40) Callback should not be required
- [**#37**](https://github.com/ucsf-ckm/amalgamatic/issues/37) Update usage examples in README
## Issues
- [**#41**](https://github.com/ucsf-ckm/amalgamatic/issues/41) tolerate null callback, fixes #40
---
# 2014-09-22

@@ -2,0 +16,0 @@ 2 commits against 1 issues, over an hour [`c14b146`](https://github.com/ucsf-ckm/amalgamatic/commit/c14b146)⎆[`ea42929`](https://github.com/ucsf-ckm/amalgamatic/commit/ea42929)

4

index.js

@@ -41,2 +41,6 @@ var async = require('async');

if (typeof callback !== 'function') {
callback = function () {};
}
var wrappedCallback = function () {

@@ -43,0 +47,0 @@ callback(results);

2

package.json

@@ -8,3 +8,3 @@ {

},
"version": "4.0.0",
"version": "4.0.1",
"dependencies": {

@@ -11,0 +11,0 @@ "async": "^0.9.0",

@@ -24,3 +24,3 @@ amalgamatic

// Do a search!
amalgamatic.search('medicine', function (results) {
amalgamatic.search({searchTerm: 'medicine'}, function (results) {
console.dir(results);

@@ -27,0 +27,0 @@ });

@@ -103,3 +103,8 @@ /*jshint expr: true*/

});
it('should run with a null callback as the user can still send a plugin-level callback', function (done) {
amalgamatic.search({searchTerm: 'medicine'});
done();
});
});
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