New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

content-entry

Package Overview
Dependencies
Maintainers
1
Versions
131
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

to
2.6.1

6

package.json
{
"name": "content-entry",
"version": "2.6.0",
"version": "2.6.1",
"publishConfig": {

@@ -8,4 +8,2 @@ "access": "public"

"sideEffects": false,
"type": "module",
"main": "./src/entry.mjs",
"exports": {

@@ -38,3 +36,3 @@ ".": "./src/entry.mjs"

"devDependencies": {
"ava": "^3.13.0",
"ava": "^3.14.0",
"c8": "^7.3.5",

@@ -41,0 +39,0 @@ "documentation": "github:arlac77/documentation",

@@ -5,4 +5,8 @@ [![npm](https://img.shields.io/npm/v/content-entry.svg)](https://www.npmjs.com/package/content-entry)

[![downloads](http://img.shields.io/npm/dm/content-entry.svg?style=flat-square)](https://npmjs.org/package/content-entry)
[![GitHub Issues](https://img.shields.io/github/issues/arlac77/content-entry.svg?style=flat-square)](https://github.com/arlac77/content-entry/issues)
[![Build Action Status](https://img.shields.io/endpoint.svg?url=https%3A%2F%2Factions-badge.atrox.dev%2Farlac77%2Fcontent-entry%2Fbadge&style=flat)](https://actions-badge.atrox.dev/arlac77/content-entry/goto)
[![Styled with prettier](https://img.shields.io/badge/styled_with-prettier-ff69b4.svg)](https://github.com/prettier/prettier)
[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)
[![Known Vulnerabilities](https://snyk.io/test/github/arlac77/content-entry/badge.svg)](https://snyk.io/test/github/arlac77/content-entry)
[![Coverage Status](https://coveralls.io/repos/arlac77/content-entry/badge.svg)](https://coveralls.io/github/arlac77/content-entry)

@@ -28,5 +32,8 @@ ## content-entry

- [isEmpty](#isempty)
- [isDeleted](#isdeleted)
- [CollectionEntryMixin](#collectionentrymixin)
- [Parameters](#parameters-2)
- [EmptyContentEntry](#emptycontententry)
- [DeletedContentEntry](#deletedcontententry)
- [isDeleted](#isdeleted-1)
- [BufferContentEntryMixin](#buffercontententrymixin)

@@ -43,4 +50,6 @@ - [Parameters](#parameters-3)

- [Properties](#properties-3)
- [BufferContentEntry](#buffercontententry)
- [Parameters](#parameters-7)
- [StringContentEntry](#stringcontententry)
- [Parameters](#parameters-7)
- [Parameters](#parameters-8)
- [Properties](#properties-4)

@@ -52,3 +61,3 @@

general content access entries
General content access entries

@@ -92,5 +101,9 @@ ### equalsContent

### isDeleted
Returns **any** true if we represent a deleted entry
## CollectionEntryMixin
Brings directory attributes to entries
Brings directory attributes to entries.

@@ -105,7 +118,19 @@ ### Parameters

represents a entry without content (content length = 0)
Represents a entry without content (content length = 0).
## DeletedContentEntry
**Extends EmptyContentEntry**
Represents a deleted entry.
### isDeleted
We are always deleted
Returns **[boolean](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean)** true
## BufferContentEntryMixin
Content entries where a Buffer is the primary data representation
Content entries where a Buffer is the primary data representation.

@@ -122,3 +147,3 @@ ### Parameters

Content entries where a stream is the primary data representation
Content entries where a stream is the primary data representation.

@@ -131,3 +156,3 @@ ### Parameters

Content entries where a string is the primary data representation
Content entries where a string is the primary data representation.

@@ -146,3 +171,3 @@ ### Parameters

Content entries where a readable stream is the primary data representation
Content entries where a readable stream is the primary data representation.

@@ -159,2 +184,11 @@ ### Parameters

## BufferContentEntry
**Extends BufferContentEntryMixin(ContentEntry)**
### Parameters
- `name`
- `buffer`
## StringContentEntry

@@ -164,3 +198,3 @@

Content entries where a string is the primary data representation
Content entries where a string is the primary data representation.

@@ -167,0 +201,0 @@ ### Parameters