Skip to content

Commit

Permalink
Rename default export to sql (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobias Walle committed Oct 12, 2020
1 parent 6edfed8 commit a10d034
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/index.ts
Expand Up @@ -122,7 +122,9 @@ export function sqltag(strings: ReadonlyArray<string>, ...values: RawValue[]) {
return new Sql(strings, values);
}

const sql = sqltag;

/**
* Standard `sql` tag.
*/
export default sqltag;
export default sql;

0 comments on commit a10d034

Please sign in to comment.