Coder Social home page Coder Social logo

christianmurphy / unist-util-map Goto Github PK

View Code? Open in Web Editor NEW

This project forked from syntax-tree/unist-util-map

0.0 2.0 0.0 30 KB

unist utility to create a new tree by mapping all nodes

Home Page: https://unifiedjs.com

License: MIT License

JavaScript 100.00%

unist-util-map's Introduction

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

Usage

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.

Related

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, organisation, or community you agree to abide by its terms.

License

MIT © azu

unist-util-map's People

Contributors

azu avatar wooorm avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.