https://github.com/guytepper/album-name-normalizer
Remove descriptors from album names.
https://github.com/guytepper/album-name-normalizer
Last synced: 3 months ago
JSON representation
Remove descriptors from album names.
- Host: GitHub
- URL: https://github.com/guytepper/album-name-normalizer
- Owner: guytepper
- Created: 2018-09-15T13:43:16.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-05-11T10:36:16.000Z (almost 7 years ago)
- Last Synced: 2025-10-05T07:38:41.579Z (7 months ago)
- Language: JavaScript
- Size: 36.1 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Album Name Normalizer
[](https://travis-ci.org/guytepper/album-name-normalizer)
[](https://coveralls.io/github/guytepper/album-name-normalizer?branch=master)
> Remove descriptors from album names.
```
input: Nevermind (Remastered)
output: Nevermind
input: Channel Orange (Explicit Version)
output: Channel Orange
input: The Queen is Dead (Deluxe Edition)
output: The Queen is Dead
```
## Installation
```
npm install album-name-normalizer
```
Alternatively, you can use yarn.
```
yarn add album-name-normalizer
```
## Usage
```javascript
const removeDescriptors = require('album-name-normalizer');
removeDescriptors('Nevermind (Remastered)'); // Nevermind
removeDescriptors('Channel Orange (Explicit Version)'); // Channel Orange
removeDescriptors('The Queen is Dead (Deluxe Edition)'); // The Queen is Dead
```