diff options
author | Casper Beyer <caspervonb@pm.me> | 2020-10-20 19:51:57 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-20 13:51:57 +0200 |
commit | 17467d01dad3f280b7f788ba87953392a8e304bb (patch) | |
tree | c9b8714a0ec222bbb9525071368ac8a923e7f8aa /std/io/util.ts | |
parent | 9cf06f76fdeb4b8cff4a47e269984d3b9a64a9be (diff) |
fix(std/io): remove trivial internal util.ts module (#8032)
Diffstat (limited to 'std/io/util.ts')
-rw-r--r-- | std/io/util.ts | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/std/io/util.ts b/std/io/util.ts deleted file mode 100644 index 0055d7094..000000000 --- a/std/io/util.ts +++ /dev/null @@ -1,30 +0,0 @@ -// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. -import * as path from "../path/mod.ts"; - -export function charCode(s: string): number { - return s.charCodeAt(0); -} - -/** Create or open a temporal file at specified directory with prefix and - * postfix - * */ -export async function tempFile( - dir: string, - opts: { - prefix?: string; - postfix?: string; - } = { prefix: "", postfix: "" }, -): Promise<{ file: Deno.File; filepath: string }> { - const r = Math.floor(Math.random() * 1000000); - const filepath = path.resolve( - `${dir}/${opts.prefix || ""}${r}${opts.postfix || ""}`, - ); - await Deno.mkdir(path.dirname(filepath), { recursive: true }); - const file = await Deno.open(filepath, { - create: true, - read: true, - write: true, - append: true, - }); - return { file, filepath }; -} |