UNPKG

ttlock-sdk-js

Version:

JavaScript port of the TTLock Android SDK

13 lines (12 loc) 268 B
'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); exports.padHexString = void 0; function padHexString(s) { if (s.length % 2 != 0) { return "0" + s; } else { return s; } } exports.padHexString = padHexString;