-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Neil Grogan
committed
Jul 24, 2017
1 parent
033fd8b
commit ca9c5de
Showing
4 changed files
with
26 additions
and
1 deletion.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ npm-debug.log* | |
.env | ||
tags | ||
dist/ | ||
config.json | ||
|
||
# Runtime data | ||
pids | ||
|
Empty file.
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
export default class Bills { | ||
|
||
constructor(text, config){ | ||
this.text = text; | ||
this.config = config; | ||
} | ||
|
||
|
||
search_text_for_account(){ | ||
for(let accountObj in this.config){ | ||
console.log(`Checking account ${JSON.stringify(accountObj)}`) | ||
} | ||
|
||
} | ||
|
||
retrieve_bill_date(){ | ||
|
||
} | ||
|
||
async run(){ | ||
this.search_text_for_account(); | ||
} | ||
} |