* Builds a stable sort key for projected leaf-default descriptors. * * @param {{key: String, env: String, type: String, default: String}} leaf Leaf-default descriptor. * @returns {String}
(leaf)
| 217 | * @returns {String} |
| 218 | */ |
| 219 | function leafDefaultSortKey(leaf) { |
| 220 | return `${leafDefaultIdentity(leaf)}:${leaf.default}` |
| 221 | } |
| 222 | |
| 223 | /** |
| 224 | * Projects env-bound `key: leaf(default, 'ENV', 'type')` calls from config source text. |
no test coverage detected