Skip to content

Instantly share code, notes, and snippets.

View eks1985's full-sized avatar

Kirill Efimov eks1985

  • Russia, Volgograd region
View GitHub Profile
@eks1985
eks1985 / JSON parser для 1С 7.7
Created December 12, 2016 18:19 — forked from bsa7/JSON parser для 1С 7.7
1C 7.7 JSON parser 2.0
Процедура СкриптКонтролИнит(scriptCtrl)
scriptCtrl = СоздатьОбъект("MSScriptControl.ScriptControl");
scriptCtrl.Language="jscript";
код = "
|
| function parseJSON(strJSON) {
| var tmpFunc = (new Function('return('+strJSON+');'))();
| return(tmpFunc);
| }
|