Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
constructor() {
if (supportsCryptoModule()) {
this.hash = new NodeHash("md5");
} else {
this.hash = new BrowserMd5();
}
}
constructor(secret?: SourceData) {
if (supportsCryptoModule()) {
this.hash = new NodeHash('sha256', secret);
} else {
this.hash = new BrowserSha256(secret);
}
}