arangojs
Version:
The official ArangoDB JavaScript driver.
12 lines • 356 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.isBearerAuth = void 0;
/**
* Determines if the given credentials are for Bearer token authentication.
*/
function isBearerAuth(auth) {
return auth.hasOwnProperty("token");
}
exports.isBearerAuth = isBearerAuth;
//#endregion
//# sourceMappingURL=configuration.js.map
;