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

repository-provider

Package Overview
Dependencies
Maintainers
1
Versions
662
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

repository-provider - npm Package Compare versions

Comparing version 8.2.0 to 8.3.0

36

dist/provider.js

@@ -722,17 +722,4 @@ 'use strict';

/**
* @return {boolean} true if content represents a directory
*/
get isDirectory() {
return this.type === Entry.TYPE_TREE;
}
/**
* @return {boolean} true if content represents a blob (plain old file)
*/
get isFile() {
return this.type === Entry.TYPE_BLOB;
}
/**
*

@@ -840,3 +827,26 @@ * @return {string[]} UTI types

/**
* @return {boolean} true if content represents a directory
*/
get isDirectory() {
console.log(
`${this.constructor.name}: isDirectory is deprecated`
);
return this.type === Entry.TYPE_TREE;
}
/**
* @return {boolean} true if content represents a blob (plain old file)
*/
get isFile() {
console.log(
`${this.constructor.name}: isFile is deprecated`
);
return this.type === Entry.TYPE_BLOB;
}
/**
* deprecated is name instead

@@ -843,0 +853,0 @@ */

{
"name": "repository-provider",
"version": "8.2.0",
"version": "8.3.0",
"publishConfig": {

@@ -5,0 +5,0 @@ "access": "public"

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