mirror of
https://github.com/MasterAcnolo/Freedom-Loader.git
synced 2026-07-29 18:25:47 +02:00
Refactor: Suffixe in helpers/
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
const path = require("path");
|
||||
|
||||
const getUserBrowser = require("./getBrowser");
|
||||
const { ffmpegPath, denoPath} = require("./path");
|
||||
const getUserBrowser = require("./getBrowser.helpers.js");
|
||||
const { ffmpegPath, denoPath} = require("./path.helpers.js");
|
||||
const { configFeatures } = require("../../config.js");
|
||||
const { logger } = require("../logger");
|
||||
const { logger } = require("../logger.js");
|
||||
|
||||
function validateCodec(codec){
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
const fs = require("fs");
|
||||
const os = require("os");
|
||||
const path = require("path");
|
||||
const notify = require("./notify")
|
||||
const notify = require("./notify.helpers")
|
||||
const { logger } = require("../logger");
|
||||
|
||||
function getUserBrowser() {
|
||||
@@ -1,5 +1,5 @@
|
||||
const { Notification, shell } = require("electron");
|
||||
const { iconPaths } = require("./path");
|
||||
const { iconPaths } = require("./path.helpers");
|
||||
|
||||
function notifyDownloadFinished(folder) {
|
||||
const notif = new Notification({
|
||||
@@ -2,7 +2,7 @@ const path = require("path");
|
||||
const fs = require("fs");
|
||||
const os = require("os");
|
||||
const { app } = require("electron");
|
||||
const config = require("../../config");
|
||||
const config = require("../../config.js");
|
||||
|
||||
const { logger } = require("../logger.js");
|
||||
|
||||
Reference in New Issue
Block a user