We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37e09ab commit 55ed9b8Copy full SHA for 55ed9b8
tests/index.test.ts
@@ -6,7 +6,7 @@ export const EOL = '\r\n';
6
describe('String.IsNullOrWhitespace', () => {
7
8
it('should return true on null string', () => {
9
- let teststring: any = null;
+ const teststring: String | null = null;
10
let result = String.IsNullOrWhiteSpace(teststring);
11
expect(result).toBe(true);
12
result = String.isNullOrWhiteSpace(teststring);
0 commit comments