11 lines
348 B
JavaScript
11 lines
348 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.isEdgeRuntime = isEdgeRuntime;
|
|
var _constants = require("./constants");
|
|
function isEdgeRuntime(value) {
|
|
return value === _constants.SERVER_RUNTIME.experimentalEdge || value === _constants.SERVER_RUNTIME.edge;
|
|
}
|
|
|
|
//# sourceMappingURL=is-edge-runtime.js.map
|