From 919d93c38425c514e01dabb8efc952964412fc37 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 16 Jun 2023 17:05:30 +0000 Subject: [PATCH] style: auto format --- lib/utils/rand-user-agent.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/utils/rand-user-agent.js b/lib/utils/rand-user-agent.js index a6af6994f..55a013da0 100644 --- a/lib/utils/rand-user-agent.js +++ b/lib/utils/rand-user-agent.js @@ -10,7 +10,7 @@ const { randUserAgent } = require('@tonyrl/rand-user-agent'); * @returns A random useragent for the given specifications. */ module.exports = ({ browser = 'chrome', os = 'mac os', device = 'desktop' }) => { - require('@tonyrl/rand-user-agent/data/user-agents.json') // prevent @vercel/nft from removing the file + require('@tonyrl/rand-user-agent/data/user-agents.json'); // prevent @vercel/nft from removing the file device = device.toLowerCase(); browser = browser.toLowerCase(); os = os.toLowerCase();