@nodelib/fs.macchiato
TypeScript icon, indicating that this package has built-in type declarations

2.0.0 • Public • Published

@nodelib/fs.macchiato

A set of classes for easy testing of built-in structures of FS.

Install

$ npm install @nodelib/fs.macchiato

Usage

import { Stats, StatsMode, Dirent, DirentType } from '@nodelib/fs.macchiato';

const stats = new Stats({ mode: StatsMode.File });
const dirent = new Dirent('file.txt', DirentType.File);

API

Stats

Creates a fake instance of fs.Stats. Can accept options to control parameter values.

const stats = new Stats({
	mode: StatsMode.File,
	ino: 3
});

Dirent

Creates a fake instance of fs.Dirent. Can accept options to control parameter values.

const dirent = new Dirent('file.txt', DirentType.Link);

Changelog

See the Releases section of our GitHub project for changelogs for each release version.

License

This software is released under the terms of the MIT license.

/@nodelib/fs.macchiato/

    Package Sidebar

    Install

    npm i @nodelib/fs.macchiato

    Weekly Downloads

    273

    Version

    2.0.0

    License

    MIT

    Unpacked Size

    6.56 kB

    Total Files

    10

    Last publish

    Collaborators

    • mrmlnc