Skip to content

Commit

Permalink
Fix: Standardize quotes
Browse files Browse the repository at this point in the history
Standardizes the use of single quotes in imports
  • Loading branch information
adamochayon authored Oct 1, 2020
1 parent f0e05c9 commit 190a7d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.ts
Original file line number Diff line number Diff line change
@@ -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';
Expand Down

0 comments on commit 190a7d4

Please sign in to comment.