Scripts/resources/[cfx-default]/[system]/runcode/runcode.js

11 lines
298 B
JavaScript
Raw Normal View History

2024-12-29 19:48:41 +00:00
exports('runJS', (snippet) => {
if (IsDuplicityVersion() && GetInvokingResource() !== GetCurrentResourceName()) {
return [ 'Invalid caller.', false ];
}
try {
return [ new Function(snippet)(), false ];
} catch (e) {
return [ false, e.toString() ];
}
});