|
4 miesięcy temu | |
---|---|---|
.. | ||
dist | 4 miesięcy temu | |
src | 4 miesięcy temu | |
LICENSE | 4 miesięcy temu | |
README.md | 4 miesięcy temu | |
package.json | 4 miesięcy temu |
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");
}