better isNotebookCellOutputItem-check

This commit is contained in:
Johannes Rieken 2021-05-11 16:03:27 +02:00
parent 7ad261890f
commit 69108a528a
No known key found for this signature in database
GPG key ID: 96634B5AF12F8798

View file

@ -3078,7 +3078,13 @@ export class NotebookData {
export class NotebookCellOutputItem {
static isNotebookCellOutputItem(obj: unknown): obj is vscode.NotebookCellOutputItem {
return obj instanceof NotebookCellOutputItem;
if (obj instanceof NotebookCellOutputItem) {
return true;
}
if (!obj) {
return false;
}
return typeof (<vscode.NotebookCellOutputItem>obj).mime === 'string';
}
constructor(