Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/paveldymkov/tags-factory


https://github.com/paveldymkov/tags-factory

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

        

# tags-factory

![test: passing](https://raw.githubusercontent.com/PavelDymkov/tags-factory/master/badges/test.svg)
![license: ISC](https://raw.githubusercontent.com/PavelDymkov/tags-factory/master/badges/license.svg)

## Usage

```ts
import { createTag } from "tags-factory";

const u = createTag((items: string[]) => items.join("").toUpperCase());

u`a${"b"}c` === "ABC";
```