|
4 luni în urmă | |
---|---|---|
.. | ||
dist | 4 luni în urmă | |
src | 4 luni în urmă | |
LICENSE | 4 luni în urmă | |
README.md | 4 luni în urmă | |
package.json | 4 luni în urmă |
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");
}