• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1import validator from 'validator';
2
3export let npmRes: boolean = validator.isEmail('foo@bar.com');
4
5export { add as hspAdd } from './testAdd';
6
7export { subtract as hspSubtract } from './src/test';
8
9export { multiply as hspMultiply } from './src/test';
10
11export { getInfo as hspGetCNInfo } from './src/test/中文';
12
13export { addTest } from 'loadHar';
14
15export { getHarName } from 'loadHar/src/main/ets/getHarNameTest';
16
17export { addTest as addTest2 } from '@test/library';
18
19export { getHarName as getHarName2 } from '@test/library/src/main/ets/getHarNameTest';
20
21export { add as harAdd } from 'loadHar';
22
23export { subtract as harSubtract } from 'loadHar';
24
25export { multiply as harMultiply } from 'loadHar';
26
27export { testGetCNInfo as harGetCNInfo } from 'loadHar';
28
29
30