mirror of
https://github.com/taigrr/yq
synced 2025-01-18 04:53:17 -08:00
9 lines
277 B
Go
9 lines
277 B
Go
package yqlib
|
|
|
|
import "container/list"
|
|
|
|
func valueOperator(d *dataTreeNavigator, matchMap *list.List, pathNode *PathTreeNode) (*list.List, error) {
|
|
log.Debug("value = %v", pathNode.Operation.CandidateNode.Node.Value)
|
|
return nodeToMap(pathNode.Operation.CandidateNode), nil
|
|
}
|