UNPKG

apigeelint

Version:

Node module to lint and Apigee Edge bundle.

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 }