@fromdeno/cache
Advanced tools
Comparing version 0.1.4 to 0.1.5
{ | ||
"name": "@fromdeno/cache", | ||
"version": "0.1.4", | ||
"version": "0.1.5", | ||
"description": "Simple API for Deno cache.", | ||
@@ -5,0 +5,0 @@ "type": "module", |
@@ -1,5 +0,5 @@ | ||
export * as Path from "https://deno.land/std@0.97.0/path/mod.ts"; | ||
export * as Path from "https://deno.land/std@0.104.0/path/mod.ts"; | ||
import { Sha256 } from "https://deno.land/std@0.97.0/hash/sha256.ts"; | ||
import { Sha256 } from "https://deno.land/std@0.104.0/hash/sha256.ts"; | ||
export const sha256 = (data: string) => new Sha256().update(data).toString(); |
16826