This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* DISCLAIMER: | |
* This script extracts sensitive financial information (transaction data) from Wealthsimple. | |
* Ensure that you use this script in a secure environment and handle the extracted data responsibly. | |
* The developer of this script is not responsible for any issues or troubles that arise from its use. | |
*/ | |
(async function () { | |
"use strict"; | |
const transactions = []; |
OlderNewer