UNPKG

node-expose-sspi-strict

Version:

Expose the Microsoft Windows SSPI interface in order to do NTLM and Kerberos authentication.

12 lines (9 loc) 256 B
import * as os from 'os'; /* istanbul ignore if */ if (os.platform() !== 'win32') { throw new Error( "The module 'node-expose-sspi' can only work on Microsoft Windows platform." ); } export * from '../lib/api'; export { sso } from './sso/index';