Socket
Socket
Sign inDemoInstall

@ms-cloudpack/path-utilities

Package Overview
Dependencies
Maintainers
2
Versions
80
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ms-cloudpack/path-utilities - npm Package Compare versions

Comparing version 2.1.1 to 2.1.2

4

lib/isFile.js

@@ -1,5 +0,5 @@

import fs from 'fs';
import fsPromises from 'fs/promises';
export async function isFile(filePath) {
try {
const stat = await fs.promises.stat(filePath);
const stat = await fsPromises.stat(filePath);
return stat.isFile();

@@ -6,0 +6,0 @@ }

@@ -1,5 +0,5 @@

import fs from 'fs';
import fsPromises from 'fs/promises';
export async function isFolder(itemPath) {
try {
const stat = await fs.promises.stat(itemPath);
const stat = await fsPromises.stat(itemPath);
return stat.isDirectory();

@@ -6,0 +6,0 @@ }

@@ -8,5 +8,5 @@ // This file is read by tools that parse documentation comments conforming to the TSDoc standard.

"packageName": "@microsoft/api-extractor",
"packageVersion": "7.34.2"
"packageVersion": "7.34.4"
}
]
}
{
"name": "@ms-cloudpack/path-utilities",
"version": "2.1.1",
"version": "2.1.2",
"description": "Utilities for resolving paths between source/intermediate/output locations in Cloudpack.",

@@ -5,0 +5,0 @@ "license": "MIT",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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