npm.io
1.1.2 • Published 5 years ago

is-hidden-file

Licence
MIT
Version
1.1.2
Deps
1
Size
7 kB
Vulns
0
Weekly
0
Stars
6
Install scriptsThis package runs scripts during installation (preinstall/install/postinstall)

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

Keywords