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