MCPcopy Index your code
hub / github.com/gto76/python-cheatsheet / writeToFile

Function writeToFile

parse.js:950–956  ·  view source on GitHub ↗
(filename, text)

Source from the content-addressed store, hash-verified

948}
949
950function writeToFile(filename, text) {
951 try {
952 return fs.writeFileSync(filename, text, 'utf8');
953 } catch(e) {
954 console.error('Error:', e.stack);
955 }
956}
957
958main();

Callers 1

mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected