-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ import * as mod from "https://deno.land/[email protected]/crypto/mod.ts"; | |
// import the nim generated code | ||
import { createRequire } from "https://deno.land/[email protected]/node/module.ts"; | ||
const require = createRequire(import.meta.url); | ||
const serialize = require("./serialize.js"); | ||
const serialize = require("serialize.js"); | ||
// import { | ||
// returnEncObj as returnEncObj_nim, | ||
// wrap as wrap_nim, | ||
|
@@ -89,4 +89,4 @@ export function wrapKey(obj: any): any { | |
|
||
export function unwrapKey(wrappedObj: any): any { | ||
return serialize.unwrapKey(wrappedObj); | ||
} | ||
} |