Skip to content

Commit

Permalink
fix eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
axetroy committed Apr 14, 2019
1 parent 54e5823 commit 57ca59f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions fs/write_file_str.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
*
* @param filename File to write
* @param content The content write to file
* @returns void
*/
export function writeFileStrSync(filename: string, content: string): void {
const encoder = new TextEncoder();
Expand All @@ -16,6 +17,7 @@ export function writeFileStrSync(filename: string, content: string): void {
*
* @param filename File to write
* @param content The content write to file
* @returns Promise<void>
*/
export async function writeFileStr(
filename: string,
Expand Down
2 changes: 1 addition & 1 deletion fs/write_file_str_test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { test } from "../testing/mod.ts";
import { assert, assertEquals } from "../testing/asserts.ts";
import { assertEquals } from "../testing/asserts.ts";
import { writeFileStr, writeFileStrSync } from "./write_file_str.ts";
import * as path from "./path/mod.ts";

Expand Down

0 comments on commit 57ca59f

Please sign in to comment.