mirror of
https://github.com/xlorepdarkhelm/numinar-coding-project.git
synced 2026-09-06 05:08:25 -04:00
10 lines
184 B
JavaScript
10 lines
184 B
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.isDocument = isDocument;
|
|
|
|
function isDocument(el) {
|
|
return el.nodeType === el.DOCUMENT_NODE;
|
|
} |