in knative-build/runtimes/javascript/platform/knative.js [40:48]
function hasActivationData(req) {
// it is a valid activation if the body contains an activation and value keys with data.
if (typeof req.body !== "undefined" &&
typeof req.body.activation !== "undefined" &&
typeof req.body.value !== "undefined") {
return true;
}
return false;
}