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

content-entry

Package Overview
Dependencies
Maintainers
1
Versions
130
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

content-entry - npm Package Compare versions

Comparing version 1.5.0 to 1.6.0

16

dist/entry.js

@@ -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 @@ }

2

package.json
{
"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

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