You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
367 B
12 lines
367 B
4 weeks ago
|
'use strict';
|
||
|
var globalThis = require('../internals/global-this');
|
||
|
var isObject = require('../internals/is-object');
|
||
|
|
||
|
var document = globalThis.document;
|
||
|
// typeof document.createElement is 'object' in old IE
|
||
|
var EXISTS = isObject(document) && isObject(document.createElement);
|
||
|
|
||
|
module.exports = function (it) {
|
||
|
return EXISTS ? document.createElement(it) : {};
|
||
|
};
|