mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-25 04:36:23 +00:00
replace void 0 with undefined
This commit is contained in:
@@ -79,7 +79,7 @@ var util = {
|
||||
return typeof arg === 'symbol';
|
||||
},
|
||||
isUndefined: function(arg) {
|
||||
return arg === void 0;
|
||||
return arg === undefined;
|
||||
},
|
||||
isRegExp: function(re) {
|
||||
return util.isObject(re) && util.objectToString(re) === '[object RegExp]';
|
||||
|
||||
Reference in New Issue
Block a user