UNPKG

289 BJavaScriptView Raw
1"use strict";
2// Exports.
3module.exports = {
4 // Basic authentication.
5 basic: (options, checker) => {
6 return require("./auth/basic")(options, checker);
7 },
8
9 // Digest authentication.
10 digest: (options, checker) => {
11 return require("./auth/digest")(options, checker);
12 }
13};