-
-
Notifications
You must be signed in to change notification settings - Fork 8.6k
[nodejs] Call writeFileSync with base64 directly #16542
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: trunk
Are you sure you want to change the base?
Conversation
Encoding option can take `base64` And this might be optimized
PR Compliance Guide 🔍Below is a summary of compliance checks for this PR:
Compliance status legend🟢 - Fully Compliant🟡 - Partial Compliant 🔴 - Not Compliant ⚪ - Requires Further Human Verification 🏷️ - Compliance label |
||||||||||||||||||||||||
PR Code Suggestions ✨Explore these optional code suggestions:
|
||||||||||||||
User description
writeFileSyncencoding option can take'base64'And this might be optimized at some point
PR Type
Enhancement
Description
Simplify base64 file writing using native encoding option
Remove unnecessary Buffer.from() conversion overhead
Leverage fs.writeFileSync() built-in base64 support
Diagram Walkthrough
File Walkthrough
webdriver.js
Simplify base64 encoding in file write operationjavascript/selenium-webdriver/lib/webdriver.js
Buffer.from(base64Content, 'base64')with direct encodingparameter
'base64'as third argument tofs.writeFileSync()