Skip to content
This repository has been archived by the owner on Oct 19, 2022. It is now read-only.

2d-archive/is-process

Repository files navigation

is-process Build Status

Check whether a value is the process.

Install

$ npm install is-process

Usage

const isProcess = require("is-process");
isProcess(process);
// => true

isProcess({});
// => false

isProcess(42069);
// => false

NPM <3