|
6 mesiacov pred | |
---|---|---|
.. | ||
dist | 6 mesiacov pred | |
src | 6 mesiacov pred | |
LICENSE | 6 mesiacov pred | |
README.md | 6 mesiacov pred | |
package.json | 6 mesiacov pred |
A simple constant to determine if the current environment is Node-like by
inspecting the process
global for Node-specific properties.
import { isNodeLike } from "@apollo/utils.isnodelike";
if (isNodeLike) {
require("fs").readFileSync("foo");
}