prettier fixes

This commit is contained in:
Nemo 2023-07-06 17:20:29 +05:30 committed by Nemo
parent cbc90f7110
commit 1b9a02fa20
3 changed files with 12 additions and 3 deletions

View File

@ -1,5 +1,10 @@
import fs from "fs";
/** code to create a new CUE file, as per the standard
* with a REM PERFORMER, TITLE, FILE attribute
* and a list of tracks provided as input
*/
// https://en.wikipedia.org/wiki/Cue_sheet_(computing)
export function generate(data, outputFile) {
try {

View File

@ -161,7 +161,11 @@ var dropInvalid = function (e) {
export function parse(
text,
options = { artist: "Unknown", forceTimestamps: false, forceDurations: false }
options = {
artist: "Unknown",
forceTimestamps: false,
forceDurations: false,
},
) {
_options = options;
let durations = false;

View File

@ -152,7 +152,7 @@ describe("Parser", function () {
let result = parse(
`1. Artist - Title 5:00
2. Another Artist - Another Title 4:20`,
{ forceTimestamps: true }
{ forceTimestamps: true },
);
assert.deepEqual(result[0].end, {
ts: "00:4:20",
@ -174,7 +174,7 @@ describe("Parser", function () {
let result = parse(
`1. Artist - Title 1:00
2. Another Artist - Another Title 1:15`,
{ forceDurations: true }
{ forceDurations: true },
);
assert.deepEqual(result[0], {
track: 1,