1
0
mirror of https://github.com/citizenfx/cfx-server-data.git synced 2025-03-13 23:37:22 +08:00

11 lines
298 B
JavaScript
Raw Normal View History

exports('runJS', (snippet) => {
if (IsDuplicityVersion() && GetInvokingResource() !== GetCurrentResourceName()) {
return [ 'Invalid caller.', false ];
}
try {
return [ new Function(snippet)(), false ];
} catch (e) {
return [ false, e.toString() ];
}
});