Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/paveldymkov/tags-factory
https://github.com/paveldymkov/tags-factory
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/paveldymkov/tags-factory
- Owner: PavelDymkov
- Created: 2022-06-01T15:55:29.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-06-05T16:15:37.000Z (over 2 years ago)
- Last Synced: 2024-11-21T11:45:38.650Z (about 2 months ago)
- Language: TypeScript
- Size: 245 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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";
```