Skip to content

Instantly share code, notes, and snippets.

@8ui
8ui / winax.sbrf.js
Created March 2, 2021 07:17 — forked from norbornen/winax.sbrf.js
Пример использования в node.js сбербанковской библиотеки для работы с банковскими терминалами sbrf.dll
const winax = require('winax');
const sbrf = new winax.Object('SBRFSRV.Server');
let opResultCode;
const opPinpadCheckResultCode = sbrf.NFun(7003);
console.log(opPinpadCheckResultCode, opPinpadCheckResultCode === 0 ? 'пинпад есть' : 'пинпада нет');
sbrf.clear();
// контрольная лента
console.info('[контрольная лента]');