mirror of
https://github.com/kemko/nomad.git
synced 2026-01-03 00:45:43 +03:00
15 lines
317 B
JavaScript
15 lines
317 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import Helper from '@ember/component/helper';
|
|
|
|
export function isObject([value]) {
|
|
const isObject =
|
|
!Array.isArray(value) && value !== null && typeof value === 'object';
|
|
return isObject;
|
|
}
|
|
|
|
export default Helper.helper(isObject);
|