Skip to content

Commit

Permalink
Fix semi
Browse files Browse the repository at this point in the history
  • Loading branch information
Nathan Gobinet committed Jul 30, 2024
1 parent 086c36b commit f15ec8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/jsondiffpatch/src/formatters/jsonpatch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ class JSONFormatter extends BaseFormatter<JSONFormatterContext, Op[]> {
};

context.buildPath = function (path: (string | number)[]) {
return path.map((path) => this.escapePath!(path)).join('/')
return path.map((path) => this.escapePath!(path)).join('/');
}

context.escapePath = function (path: string | number) {
Expand Down

0 comments on commit f15ec8e

Please sign in to comment.