JSPM

@apollo/utils.isnodelike

3.0.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 1164569
  • Score
    100M100P100Q196459F
  • License MIT

Node environment detection utility

Package Exports

  • @apollo/utils.isnodelike
  • @apollo/utils.isnodelike/dist/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@apollo/utils.isnodelike) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

isNodeLike

A simple constant to determine if the current environment is Node-like by inspecting the process global for Node-specific properties.

Usage

import { isNodeLike } from "@apollo/utils.isnodelike";

if (isNodeLike) {
  require("fs").readFileSync("foo");
}