unist-util-flatmap
Create a new Unist tree by mapping (to an array) and flattening
Last updated 8 years ago by staltz .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install unist-util-flatmap 
SYNC missed versions from official npm registry.

unist-util-flatmap

Create a new Unist tree by mapping (to an array) with the provided function and then flattening.

Helper for creating unist: Universal Syntax Tree.

Installation

npm install unist-util-flatmap

Usage

flatMap(AST, (node, index, parent) => /* array */): AST

flatMap function returns new AST object, but the argument function should return an array of ASTs.

const assert = require('assert')
const assign = require('object-assign')
const flatMap = require('unist-util-flatmap')

// Input
const tree = {
  type: 'root',
  children: [
    {
      type: 'node',
      children: [{type: 'leaf', value: '1'}]
    },
    {type: 'leaf', value: '2'}
  ]
}

// Transform:
const actual = flatMap(tree, node => {
  if (node.type === 'leaf') {
    return [
      assign({}, node, {value: 'FIRST'}),
      assign({}, node, {value: 'SECOND'})
    ]
  }
  // No change
  return [node]
})

// Expected output:
const expected = {
  type: 'root',
  children: [
    {
      type: 'node',
      children: [
        {type: 'leaf', value: 'FIRST'},
        {type: 'leaf', value: 'SECOND'}
      ]
    },
    {type: 'leaf', value: 'FIRST'},
    {type: 'leaf', value: 'SECOND'}
  ]
}

assert.deepEqual(actual, expected)

Tests

npm test

License

MIT

Current Tags

  • 1.0.0                                ...           latest (8 years ago)

1 Versions

  • 1.0.0                                ...           8 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 1
Dependencies (0)
None
Dev Dependencies (5)

Copyright 2013 - present © cnpmjs.org | Home |