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