|
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");
}