|
преди 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");
}