yahoo-fantasy
Advanced tools
Comparing version 0.2.0 to 0.2.2
@@ -36,3 +36,2 @@ var _ = require('lodash'); | ||
console.log(url); | ||
this | ||
@@ -39,0 +38,0 @@ .api(url) |
@@ -40,3 +40,6 @@ var _ = require('lodash'); | ||
cb(teams); | ||
cb(null, teams); | ||
}, function(e) { | ||
// self.err(e, cb); | ||
cb(e, null); | ||
}); | ||
@@ -74,3 +77,6 @@ }; | ||
cb(leagues); | ||
cb(null, leagues); | ||
}, function(e) { | ||
// self.err(e, cb); | ||
cb(e, null); | ||
}); | ||
@@ -100,3 +106,6 @@ }; | ||
cb(games); | ||
cb(null, games); | ||
}, function(e) { | ||
// self.err(e, cb); | ||
cb(e, null); | ||
}); | ||
@@ -134,4 +143,7 @@ }; | ||
cb(games); | ||
cb(null, games); | ||
}, function(e) { | ||
// self.err(e, cb); | ||
cb(e, null); | ||
}); | ||
}; |
{ | ||
"name": "yahoo-fantasy", | ||
"version": "0.2.0", | ||
"version": "0.2.2", | ||
"description": "An API to help facilitate the use of the Yahoo! Fantasy Sports API in NodeJS projects.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -58,2 +58,5 @@ Yahoo! Fantasy API Node Module | ||
#### 0.2.2 | ||
* Hotfix to fix "Teams" collection - use error first convention | ||
#### 0.2.0 | ||
@@ -60,0 +63,0 @@ * Made helper classes more consistent |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
69402
25
1773
76