mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-02-25 18:22:55 +00:00
10 lines
126 B
TypeScript
10 lines
126 B
TypeScript
import sum = require("hash-sum");
|
|
|
|
sum(undefined);
|
|
sum(null);
|
|
sum({});
|
|
sum({ hello: "world" });
|
|
sum(100);
|
|
sum("");
|
|
sum(true);
|