10 lines
216 B
JavaScript
10 lines
216 B
JavaScript
'use strict';
|
|
|
|
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
|
|
function isObjectLike(value) {
|
|
return typeof value === 'object' && value !== null;
|
|
}
|
|
|
|
exports.isObjectLike = isObjectLike;
|