UNPKG

apigeelint

Version:

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

13 lines (10 loc) 247 B
const BundleType = { APIPROXY: "apiproxy", SHAREDFLOW: "sharedflowbundle", }; const getXPathName = (bundleType) => bundleType === BundleType.SHAREDFLOW ? "SharedFlowBundle" : "APIProxy"; module.exports = { BundleType, getXPathName, };