Skip to content

Commit

Permalink
Add trailing commas to the end of the args
Browse files Browse the repository at this point in the history
  • Loading branch information
kionell committed Dec 13, 2021
1 parent c2be7a8 commit f9285da
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Storyboards/Compounds/CommandTrigger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export class CommandTrigger extends Compound {
triggerName?: string,
startTime?: number,
endTime?: number,
groupNumber?: number
groupNumber?: number,
) {
super();

Expand Down
2 changes: 1 addition & 1 deletion src/Utils/Interpolation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export class Interpolation {
static barycentricLagrange(
points: Vector2[],
weights: number[],
time: number
time: number,
): number {
if (points === null || points.length === 0) {
throw new Error('points must contain at least one point');
Expand Down

0 comments on commit f9285da

Please sign in to comment.