UNPKG

http-auth

Version:

Node.js package for HTTP basic and digest access authentication.

14 lines (12 loc) 289 B
"use strict"; // Exports. module.exports = { // Basic authentication. basic: (options, checker) => { return require("./auth/basic")(options, checker); }, // Digest authentication. digest: (options, checker) => { return require("./auth/digest")(options, checker); } };