mirror of
https://github.com/status-im/consul.git
synced 2025-03-03 06:40:45 +00:00
14 lines
262 B
JavaScript
14 lines
262 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
export default function (e, value, target = {}) {
|
|
if (typeof e.target !== 'undefined') {
|
|
return e;
|
|
}
|
|
return {
|
|
target: { ...target, ...{ name: e, value: value } },
|
|
};
|
|
}
|