Comparing version 0.0.14 to 0.0.15
{ | ||
"name": "q-io", | ||
"version": "0.0.14", | ||
"version": "0.0.15", | ||
"description": "Q Promise wrappers for Node's IO.", | ||
@@ -5,0 +5,0 @@ "homepage": "http://github.com/kriskowal/q-io/", |
@@ -141,3 +141,3 @@ | ||
} else { | ||
return Q.ref(); | ||
return Q.resolve(); | ||
} | ||
@@ -167,3 +167,3 @@ }; | ||
drained.resolve(); // we will get no further drain events | ||
return Q.ref(); // closing not explicitly observable | ||
return Q.resolve(); // closing not explicitly observable | ||
}; | ||
@@ -181,6 +181,6 @@ | ||
drained.resolve(); // we will get no further drain events | ||
return Q.ref(); // destruction not explicitly observable | ||
return Q.resolve(); // destruction not explicitly observable | ||
}; | ||
return Q.ref(self); // todo returns the begin.promise | ||
return Q.resolve(self); // todo returns the begin.promise | ||
}; | ||
@@ -187,0 +187,0 @@ |
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
8581