in core/nodejsActionBase/platform/knative.js [53:60]
function hasInitData(req) {
// it is a valid init. if the body contains an init key with data.
if (typeof req.body !== "undefined" &&
typeof req.body.init !== "undefined") {
return true;
}
return false;
}