Charlie91

Results 2 issues of Charlie91

Hi. ``` // Canadian postal code mask const firstLetter = /(?!.*[DFIOQU])[A-VXY]/i; const letter = /(?!.*[DFIOQU])[A-Z]/i; const digit = /[0-9]/; const mask = [firstLetter, digit, letter, " ", digit, letter, digit];...

### What is this PR for? add necessary method so the CRON functionality could be set from the new interface ### What type of PR is it? Bug Fix ###...