content-entry
Advanced tools
Comparing version 1.5.0 to 1.6.0
@@ -50,2 +50,11 @@ 'use strict'; | ||
} | ||
async equals(other) { | ||
return ( | ||
other !== undefined && | ||
this.name === other.name && | ||
this.isCollection === other.isCollection && | ||
this.isBlob === other.isBlob | ||
); | ||
} | ||
} | ||
@@ -169,2 +178,9 @@ | ||
} | ||
async setString(value, options) { | ||
const stream$$1 = await this.getWriteStream(options); | ||
return new Promise((resolve, reject) => | ||
stream$$1.end(value, () => resolve()) | ||
); | ||
} | ||
}; | ||
@@ -171,0 +187,0 @@ } |
{ | ||
"name": "content-entry", | ||
"version": "1.5.0", | ||
"version": "1.6.0", | ||
"publishConfig": { | ||
@@ -5,0 +5,0 @@ "access": "public" |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
24884
598