utils
Provides miscellaneous utility methods.
Decrypt text
** Usage example:**
// to encrypt plaintext into ciphertext
const encrypt = utils.encrypt('https://www.wikipedia.org/');
log.info(encrypt); // will print b757ba2c2fc50fbb511d596816ca06c4fa56f4e98ce222f30bc58d5251ed635e
// to decrypt ciphertext and use it in script
const decrypt = utils.decrypt(encrypt);
log.info(decrypt); // will print ENCRYPTED
web.init();
web.open(decrypt); // will open https://www.wikipedia.org/
// to get original plaintext use getDecryptResult
const value = decrypt.getDecryptResult();
log.info(value); //will print https://www.wikipedia.org/
Parameters:
Name | Type | Description |
---|---|---|
text | String | Text |
Returns:
Object
- DecryptResult Object with getDecryptResult methodUses the DNS protocol to resolve a host name
Parameters:
Name | Type | Description |
---|---|---|
hostname | String | Host name to resolve. |
rrType | String | optional Resource record type. Default: 'A'. |
Returns:
(Array.<String>|Object)
- Array or Object of resource records. The type and structure of individual results vary based on rrtypeEncrypt text
** Usage example:**
// to encrypt plaintext into ciphertext
const encrypt = utils.encrypt('https://www.wikipedia.org/');
log.info(encrypt); // will print b757ba2c2fc50fbb511d596816ca06c4fa56f4e98ce222f30bc58d5251ed635e
// to decrypt ciphertext and use it in script
const decrypt = utils.decrypt(encrypt);
log.info(decrypt); // will print ENCRYPTED
web.init();
web.open(decrypt); // will open https://www.wikipedia.org/
// to get original plaintext use getDecryptResult
const value = decrypt.getDecryptResult();
log.info(value); //will print https://www.wikipedia.org/
Parameters:
Name | Type | Description |
---|---|---|
text | String | Text |
Returns:
String
- Encrypted textPause test execution for the given amount of milliseconds.
Parameters:
Name | Type | Description |
---|---|---|
ms | Number | Milliseconds to pause the execution for. |
Reads data from csv file
Parameters:
Name | Type | Description |
---|---|---|
filePath | String | Absolute path to file |
options | Object | optional Options (https://csv.js.org/parse/options/) |
Reads data from Xlsx file
Parameters:
Name | Type | Description |
---|---|---|
filePath | String | Absolute path to file |
Returns:
Array
- Array of xlsx dataWrites data into csv file
Parameters:
Name | Type | Description |
---|---|---|
filePath | String | Absolute path to file |
data | Array | CSV data in format [{column_name_1: 'foo', column_name_2: 'bar'}] |
options | Object |
Parse XML data to JS object
Parameters:
Name | Type | Description |
---|---|---|
xmlDataStr | string |Buffer | Like |
options | boolean |Object |
Last modified 4mo ago