Socket
Socket
Sign inDemoInstall

unist-util-map

Package Overview
Dependencies
Maintainers
2
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

unist-util-map

unist utility to create a new tree by mapping all nodes


Version published
Weekly downloads
96K
increased by25.62%
Maintainers
2
Weekly downloads
 
Created
Source

unist-util-map

Build Coverage Downloads Size Sponsors Backers Chat

unist utility to create a new tree by mapping all nodes with the given function.

Install

npm:

npm install unist-util-map

Use

var u = require('unist-builder')
var map = require('unist-util-map')

var tree = u('tree', [
  u('leaf', 'leaf 1'),
  u('node', [u('leaf', 'leaf 2')]),
  u('void'),
  u('leaf', 'leaf 3')
])

var next = map(tree, function(node) {
  return node.type === 'leaf'
    ? Object.assign({}, node, {value: 'CHANGED'})
    : node
})

console.dir(next, {depth: null})

Yields:

{
  type: 'tree',
  children: [
    {type: 'leaf', value: 'CHANGED'},
    {type: 'node', children: [{type: 'leaf', value: 'CHANGED'}]},
    {type: 'void'},
    {type: 'leaf', value: 'CHANGED'}
  ]
}

…note that tree is not mutated.

API

map(tree, mapFn)

Create a new tree by mapping all nodes with the given function.

Parameters
  • tree (Node) — Tree to map
  • callback (Function) — Function that returns a new node
Returns

Node — New mapped tree.

function mapFn(node[, index, parent])

Function called with a node to produce a new node.

Parameters
  • node (Node) — Current node being processed
  • index (number?) — Index of node, or null
  • parent (Node?) — Parent of node, or null
Returns

Node — Node to be used in the new tree. Its children are not used: if the original node has children, those are mapped.

Contribute

See contributing.md in syntax-tree/.github for ways to get started. See support.md for ways to get help.

This project has a code of conduct. By interacting with this repository, organization, or community you agree to abide by its terms.

License

MIT © azu

Keywords

FAQs

Package last updated on 16 Feb 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc