itcast 6e512b8ce6 aaaa 4 ヶ月 前
..
dist 6e512b8ce6 aaaa 4 ヶ月 前
src 6e512b8ce6 aaaa 4 ヶ月 前
LICENSE 6e512b8ce6 aaaa 4 ヶ月 前
README.md 6e512b8ce6 aaaa 4 ヶ月 前
package.json 6e512b8ce6 aaaa 4 ヶ月 前

README.md

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");
}