From 190a7d498433e0baba251170775aa1d74cb49963 Mon Sep 17 00:00:00 2001 From: Adam Ochayon Date: Thu, 1 Oct 2020 18:52:24 -0400 Subject: [PATCH] Fix: Standardize quotes Standardizes the use of single quotes in imports --- index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.ts b/index.ts index 765ea5c..f172c6d 100644 --- a/index.ts +++ b/index.ts @@ -1,5 +1,5 @@ -export { compare, compare_ints } from "./lib/compare"; -export { equals, hmac_equals } from "./lib/equals"; +export { compare, compare_ints } from './lib/compare'; +export { equals, hmac_equals } from './lib/equals'; export { intdiv, modulo } from './lib/intdiv'; export { resize } from './lib/resize'; export { select_ints, select } from './lib/select';