UNPKG

apigeelint

Version:

Node module and tool to lint a bundle for an Apigee API Proxy or sharedflow.

13 lines (11 loc) 259 B
const BundleType = { APIPROXY: "apiproxy", SHAREDFLOW: "sharedflowbundle" } var getXPathName = function(bundleType){ return bundleType === BundleType.SHAREDFLOW ? "SharedFlowBundle" : "APIProxy"; } module.exports = { BundleType, getXPathName }