|
пре 4 месеци | |
---|---|---|
.. | ||
dist | пре 4 месеци | |
src | пре 4 месеци | |
LICENSE | пре 4 месеци | |
README.md | пре 4 месеци | |
package.json | пре 4 месеци |
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");
}