mirror of
https://github.com/rjNemo/federation
synced 2026-06-08 11:16:40 +00:00
9 lines
233 B
JavaScript
9 lines
233 B
JavaScript
'use strict'
|
|
|
|
exports.__esModule = true
|
|
exports.isEnumerableObject = void 0
|
|
|
|
const isEnumerableObject = value =>
|
|
typeof value === 'object' && value !== null && !Array.isArray(value)
|
|
|
|
exports.isEnumerableObject = isEnumerableObject
|