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

clone-stats

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

clone-stats

Safely clone node's fs.Stats instances without losing their class methods

  • 0.0.1
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created

What is clone-stats?

The clone-stats npm package is designed to clone the stats from one fs.Stats instance to another. This is particularly useful when you're working with file system operations in Node.js and need to replicate file or directory statistics accurately without modifying the original stats object. It provides a straightforward and efficient way to copy stats, ensuring that all the properties are cloned correctly.

What are clone-stats's main functionalities?

Cloning fs.Stats instance

This code demonstrates how to clone the statistics of a file system object using clone-stats. It first requires the clone-stats and fs modules. Then, it uses fs.stat to get the stats of a specific file and clone-stats to clone these stats into a new variable, allowing for manipulation or comparison without affecting the original stats object.

const cloneStats = require('clone-stats');
const fs = require('fs');

fs.stat('/path/to/file', (err, stats) => {
  if (err) throw err;
  const clonedStats = cloneStats(stats);
  console.log(clonedStats);
});

Other packages similar to clone-stats

Keywords

FAQs

Package last updated on 11 Jan 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

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