mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-25 00:29:30 -05:00
5 lines
138 B
Text
5 lines
138 B
Text
|
export default function extractValue(desc) {
|
||
|
return desc.value ||
|
||
|
(typeof desc.initializer === 'function' && desc.initializer());
|
||
|
}
|