|
4 bulan lalu | |
---|---|---|
.. | ||
dist | 4 bulan lalu | |
src | 4 bulan lalu | |
LICENSE | 4 bulan lalu | |
README.md | 4 bulan lalu | |
package.json | 4 bulan lalu |
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");
}