@ledgerhq/hw-app-icon
Version:
Ledger Hardware Wallet ICON Application API
61 lines • 2.19 kB
JavaScript
/********************************************************************************
* Ledger Node JS API for ICON
* (c) 2016-2017 Ledger
*
* Modifications (c) 2018 ICON Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
********************************************************************************/
Object.defineProperty(exports, "__esModule", { value: true });
exports.hexToBase64 = exports.foreach = exports.splitPath = void 0;
// TODO use bip32-path library
function splitPath(path) {
const result = [];
const components = path.split("/");
components.forEach(element => {
let number = parseInt(element, 10);
if (isNaN(number)) {
return; // FIXME shouldn't it throws instead?
}
if (element.length > 1 && element[element.length - 1] === "'") {
number += 0x80000000;
}
result.push(number);
});
return result;
}
exports.splitPath = splitPath;
function foreach(arr, callback) {
function iterate(index, array, result) {
if (index >= array.length) {
return result;
}
else
return callback(array[index], index).then(function (res) {
result.push(res);
return iterate(index + 1, array, result);
});
}
return Promise.resolve().then(() => iterate(0, arr, []));
}
exports.foreach = foreach;
function hexToBase64(hexString) {
return btoa((hexString.match(/\w{2}/g) || [])
.map(function (a) {
return String.fromCharCode(parseInt(a, 16));
})
.join(""));
}
exports.hexToBase64 = hexToBase64;
//# sourceMappingURL=utils.js.map
;