2019-05-15 01:48:48 +03:00
|
|
|
"use strict";
|
2020-07-20 09:27:26 +03:00
|
|
|
import { arrayify, hexlify } from "@ethersproject/bytes";
|
2019-08-25 09:39:20 +03:00
|
|
|
import { toUtf8Bytes, UnicodeNormalizationForm } from '@ethersproject/strings';
|
|
|
|
export function looseArrayify(hexString) {
|
2019-05-15 01:48:48 +03:00
|
|
|
if (typeof (hexString) === 'string' && hexString.substring(0, 2) !== '0x') {
|
|
|
|
hexString = '0x' + hexString;
|
|
|
|
}
|
2019-08-25 09:39:20 +03:00
|
|
|
return arrayify(hexString);
|
2019-05-15 01:48:48 +03:00
|
|
|
}
|
2019-08-25 09:39:20 +03:00
|
|
|
export function zpad(value, length) {
|
2019-05-15 01:48:48 +03:00
|
|
|
value = String(value);
|
|
|
|
while (value.length < length) {
|
|
|
|
value = '0' + value;
|
|
|
|
}
|
|
|
|
return value;
|
|
|
|
}
|
2019-08-25 09:39:20 +03:00
|
|
|
export function getPassword(password) {
|
2019-05-15 01:48:48 +03:00
|
|
|
if (typeof (password) === 'string') {
|
2019-08-25 09:39:20 +03:00
|
|
|
return toUtf8Bytes(password, UnicodeNormalizationForm.NFKC);
|
2019-05-15 01:48:48 +03:00
|
|
|
}
|
2019-08-25 09:39:20 +03:00
|
|
|
return arrayify(password);
|
2019-05-15 01:48:48 +03:00
|
|
|
}
|
2019-08-25 09:39:20 +03:00
|
|
|
export function searchPath(object, path) {
|
|
|
|
let currentChild = object;
|
2019-11-20 12:57:38 +03:00
|
|
|
const comps = path.toLowerCase().split('/');
|
2019-08-25 09:39:20 +03:00
|
|
|
for (let i = 0; i < comps.length; i++) {
|
2019-05-15 01:48:48 +03:00
|
|
|
// Search for a child object with a case-insensitive matching key
|
2019-08-25 09:39:20 +03:00
|
|
|
let matchingChild = null;
|
2019-11-20 12:57:38 +03:00
|
|
|
for (const key in currentChild) {
|
2019-05-15 01:48:48 +03:00
|
|
|
if (key.toLowerCase() === comps[i]) {
|
|
|
|
matchingChild = currentChild[key];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Didn't find one. :'(
|
|
|
|
if (matchingChild === null) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
// Now check this child...
|
|
|
|
currentChild = matchingChild;
|
|
|
|
}
|
|
|
|
return currentChild;
|
|
|
|
}
|
2020-07-20 09:27:26 +03:00
|
|
|
// See: https://www.ietf.org/rfc/rfc4122.txt (Section 4.4)
|
|
|
|
export function uuidV4(randomBytes) {
|
|
|
|
const bytes = arrayify(randomBytes);
|
|
|
|
// Section: 4.1.3:
|
|
|
|
// - time_hi_and_version[12:16] = 0b0100
|
|
|
|
bytes[6] = (bytes[6] & 0x0f) | 0x40;
|
|
|
|
// Section 4.4
|
|
|
|
// - clock_seq_hi_and_reserved[6] = 0b0
|
|
|
|
// - clock_seq_hi_and_reserved[7] = 0b1
|
|
|
|
bytes[8] = (bytes[8] & 0x3f) | 0x80;
|
|
|
|
const value = hexlify(bytes);
|
|
|
|
return [
|
|
|
|
value.substring(2, 10),
|
|
|
|
value.substring(10, 14),
|
|
|
|
value.substring(14, 18),
|
|
|
|
value.substring(18, 22),
|
|
|
|
value.substring(22, 34),
|
|
|
|
].join("-");
|
|
|
|
}
|
2020-07-13 15:03:56 +03:00
|
|
|
//# sourceMappingURL=utils.js.map
|