mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-15 19:26:42 +08:00
use isNullOrUndefined instead of isUndefined
This commit is contained in:
@ -210,7 +210,7 @@ export class FileSystemAccess {
|
||||
var result = "";
|
||||
while (true) {
|
||||
line = bufferedReader.readLine();
|
||||
if (types.isUndefined(line)) {
|
||||
if (types.isNullOrUndefined(line)) {
|
||||
break;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user