Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 888 Bytes

README.md

File metadata and controls

34 lines (25 loc) · 888 Bytes

is-hidden-file

npm version

Check if a file/folder is hidden on all platforms.

  • Unix: Check file name starts with ..
  • Windows: Check if file hidden using native code.

Installation

  • npm: npm i is-hidden-file
  • yarn: yarn add is-hidden-file

Usage

Node js

const { isHiddenFile } = require("is-hidden-file");

console.log(isHiddenFile(".git")) // true
console.log(isHiddenFile("README.md")) // false

Node js with typescript

import { isHiddenFile } from "is-hidden-file";

console.log(isHiddenFile(".git")) // true
console.log(isHiddenFile("README.md")) // false

License

MIT