fix(core): update
This commit is contained in:
parent
7fdc2a7bc1
commit
5d78b27eed
@ -10,6 +10,11 @@ tap.test('first test', async () => {
|
||||
|
||||
tap.test('should check an IBAN', async () => {
|
||||
expect(testValidator.isIban('AT95 0100 0000 0555 4915')).toBeTrue();
|
||||
});
|
||||
|
||||
tap.test('escape email', async () => {
|
||||
const escapedEmail = testValidator.escape('test@example.com');
|
||||
console.log(escapedEmail);
|
||||
})
|
||||
|
||||
tap.start();
|
||||
|
@ -3,6 +3,6 @@
|
||||
*/
|
||||
export const commitinfo = {
|
||||
name: '@pushrocks/smartvalidator',
|
||||
version: '1.0.2',
|
||||
version: '1.0.3',
|
||||
description: 'a wrapper for the validator package to perform validations'
|
||||
}
|
||||
|
@ -8,4 +8,8 @@ export class SmartValidator {
|
||||
public isIban(stringArg: string) {
|
||||
return plugins.validator.isIBAN(stringArg);
|
||||
}
|
||||
|
||||
public escape(stringArg: string) {
|
||||
return plugins.validator.escape(stringArg);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user