@npym/info
v1.0.0
Published
Introspection package to get info about NPyM
Readme
NPyM Info
This is an utility package to help you know if you are running in a NPyM environment.
Installation
npm install @npym/infoUsage
import { isNpym } from "@npym/info";
if (isNpym()) {
console.log("This is a NPyM environment");
}