CoolFace
Apppublic

sanket3280/code-execution

sourceHugging Faceupdated 10mo agoView on Hugging Face
0likes
string.js11 linesDownload Raw Back to wrappers
1module.exports = function stringWrapper({ sourceCode, language }) {2  if (language !== 'JAVASCRIPT_NODE') return { sourceCode, usedRunner: false };3  const prefix = `4// String helpers (noop for now, placeholder for unicode/normalize)5function __norm(s){return typeof s==='string'?s.normalize('NFC'):s}6`;7  return { sourceCode: prefix + sourceCode, usedRunner: false };8};9 10 11