mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 19:07:08 +00:00
9 lines
162 B
TypeScript
9 lines
162 B
TypeScript
import { compare, hash, hash_from_file } from 'ssdeep';
|
|
|
|
let str = 'string';
|
|
let num = 123;
|
|
|
|
num = compare(str, str);
|
|
str = hash(str);
|
|
str = hash_from_file(str);
|