npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

template-literal-each

v3.0.1

Published

Iterate over objects created from markdown style tables

Downloads

38

Readme

Template literal - each

Tagged template literal to iterate over markdown style tables as objects.

Inspired by the Jest test.each syntax.

Installation

$ npm install --save template-literal-each

Exports

Being based on the template-literal-table package, as of v2.0 template-literal-each follows the same capabilities and flexibility

name | description ----------|------------- each | Table iterator, skips divider rows (cells only containing two or more - characters) and rows consisting of empty cells empty | Table iterator, skips divider rows, preserves rows consisting of empty cells create | Table iterator creator, creates a new iterator with custom row filter functions mapper | Mapping Table iterator creator, creates a new iterator with a mapper to cast each records' properties into the desired type/shape

API

each (default)

The each function is the recommended (and prior to v2.0 - the only) use, it iterates table structures as most like intended

import { each } from 'template-literal-each';

each`
	foo  | bar   | baz
	-----|-------|-----
	${1} | ${2}  | ${4}
	${2} | ${4}  | ${8}
	4    | 8     | 16
`((record) => {
	console.log(record);
});

//  { foo: 1, bar: 2, baz: 4},
//  { foo: 2, bar: 4, baz: 8},
//  { foo: '4', bar: '8', baz: '16'},

empty

Like the each function, with the difference that rows containing only undefined cells are preserved, do note that any newline in the table structure will become a record, regardless of intention. This means that a trailing newline (as shown below) will also result in a record (consisting of only undefined values).

import { empty } from('template-literal-each');

empty`
	foo  | bar   | baz
	-----|-------|-----
	     |       |
	one
	     | two
	     |       | three
	${1} | ${2}  | ${4}
	${2} | ${4}  | ${8}
	4    | 8     | 16
`((record) => {
	console.log(record);
});

//  { foo: undefined, bar: undefined, baz: undefined},
//  { foo: 'one', bar: undefined, baz: undefined},
//  { foo: undefined, bar: 'two', baz: undefined},
//  { foo: undefined, bar: undefined, baz: 'three'},
//  { foo: 1, bar: 2, baz: 4},
//  { foo: 2, bar: 4, baz: 8},
//  { foo: '4', bar: '8', baz: '16'},
//  { foo: undefined, bar: undefined, baz: undefined},

create

The each and empty functions should cover most scenarios, though sometimes one needs different filter applied to the records passed in. For this purpose the create function exists, it allows any number of filters to be specified, which will be applied before the records are created from the values, meaning the filter function will receive all values as separate argument (no reference to the name, though the order represents the same order as the table columns)

The filter function signature is (...cells: unknown[]) => boolean, please refer to the underlying template-literal-table Filter tips for more information.

import { create } from 'template-literal-table';

// if the fourth column contains a value that is not a divider we want it to be present
const fourth = create((...values: unknown[]) => Boolean(values[3]) && !/^--+$/.test(String(values[3])) );
fourth`
	one | two | three | four
	----|-----|-------|------
	1   | 2   | 3     | 4
	1   | 2   | 3     |
	1   | 2   |       | 4
	1   |     | 3     | 4
	    | 2   | 3     | 4
`((record) => {
	console.log(record);
});

//  { one: '1', two: '2', three: '3', four: '4' },
//  { one: '1', two: '2', three: undefined, four: '4' },
//  { one: '1', two: undefined, three: '3', four: '4' },
//  { one: undefined, two: '2', three: '3', four: '4' },

mapper

Sometimes it more convenient to keep the table simple and map the values into different types afterwards, this can now be done by creating a mapping iterator

import { mapper } from 'template-literal-each';
const map = mapper<{ foo: number, bar: boolean, baz: Array<string> }>({ foo: Number, bar: (v): boolean => Boolean(Number(v)), baz: (v) => [String(v)] });
const records = map`
	foo | bar | baz
	----|-----|-----
	7   | 1   | 3
	2   | 0   | 0
`((record) => {
	console.log(record);
});

// { foo: 7, bar: true, baz: ['3'] },
// { foo: 2, bar: false, baz: ['0'] },

Styles

Tables in Markdown style come in different style, currently we support the following styles. Keep in mind that the cells of the header divider row have to be two characters minimum (e.g. --, :-, -:), this is to allow for cells to contain only - (which you could interpret as an explicit form of N/A)

The most basic format, only the bare essentials

key1|key2|key3
value1|value2|value3

Slightly improved readability using some more spacing around column separators

key1 | key2 | key3
value1 | value2 | value3

As that doesn't really provide more readability, this format is preferred

key1   | key2   | key3
-------|--------|--------
value1 | value2 | value3

A common format provides a more table-like look and feel

| key1   | key2   | key3   |
|--------|--------|--------|
| value1 | value2 | value3 |

Some like to have more clear columns

| key1   | key2   | key3   |
| ------ | ------ | ------ |
| value1 | value2 | value3 |

Although ignored by the table-tag, alignment indicators are supported in the header divider

key1   | key2   | key3
------:|:------:|:------
value1 | value2 | value3

Can be used with spacing around the column separators

key1   | key2   | key3
-----: | :----: | :-----
value1 | value2 | value3

Also works in combination with borders

| key1   | key2   | key3   |
|-------:|:------:|:-------|
| value1 | value2 | value3 |

And with both borders and spacing around column separators

| key1   | key2   | key3   |
| -----: | :----: | :----- |
| value1 | value2 | value3 |

Tips

Prettier

This tip was suggested by @LucasSegersFabro If you want prettier to format your tables automatically, you can trick it into thinking it is looking at the Jest each syntax (which unfortunatly a hardcoded pattern within prettier).

import { each } from 'template-literal-each';

// for formatting purposes
const it = {
  each,
};

const test = suite('Common processor tests');

it.each`
  your   | table | here
  -------|-------|------
  thanks | to    | @LucasSegersFabro
`((record) => {
	//...
});

Escaping the pipe character (|)

Besides the general character escaping rules in JavaScript/TypeScript strings, sometimes you really want a pipe symbol without resorting to a value (${'|'}), this can be done by adding two backslashes before a pipe character: \\|, it is actively enforced not to be interpreted as column separator.

License

MIT License Copyright (c) 2018-2022 Rogier Spieker

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.