summaryrefslogtreecommitdiffhomepage
path: root/packages/shared/src/util/hash.ts
diff options
context:
space:
mode:
authorDax <[email protected]>2026-04-25 10:59:17 -0400
committerGitHub <[email protected]>2026-04-25 10:59:17 -0400
commit62ef2a220723a6d6cb050e523fcdfaa974dafdda (patch)
tree214b03d016e18e4d8fe1bfc7209c1edd86547bbd /packages/shared/src/util/hash.ts
parent37aa8442dc023fad250f2573c8235a544789900c (diff)
downloadopencode-62ef2a220723a6d6cb050e523fcdfaa974dafdda.tar.gz
opencode-62ef2a220723a6d6cb050e523fcdfaa974dafdda.zip
refactor: rename shared package to core (#24309)
Diffstat (limited to 'packages/shared/src/util/hash.ts')
-rw-r--r--packages/shared/src/util/hash.ts7
1 files changed, 0 insertions, 7 deletions
diff --git a/packages/shared/src/util/hash.ts b/packages/shared/src/util/hash.ts
deleted file mode 100644
index 680e0f40b..000000000
--- a/packages/shared/src/util/hash.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-import { createHash } from "crypto"
-
-export namespace Hash {
- export function fast(input: string | Buffer): string {
- return createHash("sha1").update(input).digest("hex")
- }
-}