# split-tracklist

> split tracklist text to object contains artist and title of each track

Latest version **1.1.1** (published 2015-09-19) · MIT license · 0 weekly downloads

## Install

```sh
npm install split-tracklist
pnpm add split-tracklist
yarn add split-tracklist
bun add split-tracklist
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.1.1 |
| Published | 2015-09-19 |
| First published | 2015-09-19 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | ewnd9 |
| Maintainers | ewnd9 |
| Keywords | split, tracklist, text-processing |

## Links

- npm: https://www.npmjs.com/package/split-tracklist
- Repository: https://github.com/ewnd9/split-tracklist
- Issues: https://github.com/ewnd9/split-tracklist/issues
- npm.io page: https://npm.io/package/split-tracklist

## Recent versions

- 1.1.1 (latest) — 2015-09-19
- 1.1.0 — 2015-09-19
- 1.0.0 — 2015-09-19

## README

# split-tracklist

[![Build Status](https://travis-ci.org/ewnd9/split-tracklist.svg?branch=master)](https://travis-ci.org/ewnd9/split-tracklist)

split tracklist text to object contains artist and title of each track

## Install

```
$ npm install split-tracklist --save
```

## Usage

```javascript
var splitTracklist = require('split-tracklist');
var tracklist = ['artist1 - title1', 'artist2 - title2 [label]'].join('\n');
var tracks = splitTracklist(tracklist);

/*
[
  {
    track: 'artist1 - title1',
    artist: 'artist1',
    title: 'title1'
  },
  {
    track: 'artist2 - title2'
    artist: 'artist2',
    title: 'title2',
    comment: 'label'
  }
]
 */
```

## License

MIT © [ewnd9](http://ewnd9.com)

---
_Source: https://npm.io/package/split-tracklist · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
