Skip to content

Commit

Permalink
Merge pull request #189 from samchon/v3.2
Browse files Browse the repository at this point in the history
Fix #188, mis-typed `$$tail`
  • Loading branch information
samchon authored Sep 13, 2022
2 parents 4427bd3 + c0cb3bc commit d795c30
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "typescript-json",
"version": "3.2.3",
"version": "3.2.4",
"description": "Runtime type checkers and 5x faster JSON.stringify() function",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/programmers/helpers/StringifyJoinder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ export namespace StringifyJoiner {
? expressions
: [
ts.factory.createCallExpression(
importer.use("$tail"),
importer.use("tail"),
undefined,
[TemplateFactory.generate(expressions)],
),
Expand Down

0 comments on commit d795c30

Please sign in to comment.