New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

tonal-notation

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tonal-notation - npm Package Compare versions

Comparing version 0.60.0 to 0.61.0

15

build/index.js

@@ -6,2 +6,17 @@ 'use strict';

/**
* Functions related to music notation in strings. Things like parse accidentals,
* or convert from step to note letter.
*
* Glossary:
*
* - step: the number from 0 to 6 representing the letters from C to B
* - letter: a valid note letter (from A to G)
* - alteration: a number indicating the sharps (positive) or flats (negative)
* - accidentals: a string with sharps (#) or flats (b)
*
* @example
* var notation = require('tonal-notation')
* notation.toAcc('3') // => '###'
* notation.toAcc('-3') // => 'bbb'
* notation.toAlt('###') // => 3
* @module notation

@@ -8,0 +23,0 @@ */

/**
* Functions related to music notation in strings. Things like parse accidentals,
* or convert from step to note letter.
*
* Glossary:
*
* - step: the number from 0 to 6 representing the letters from C to B
* - letter: a valid note letter (from A to G)
* - alteration: a number indicating the sharps (positive) or flats (negative)
* - accidentals: a string with sharps (#) or flats (b)
*
* @example
* var notation = require('tonal-notation')
* notation.toAcc('3') // => '###'
* notation.toAcc('-3') // => 'bbb'
* notation.toAlt('###') // => 3
* @module notation

@@ -3,0 +18,0 @@ */

7

package.json
{
"name": "tonal-notation",
"version": "0.60.0",
"version": "0.61.0",
"description": "Music notation utilities",

@@ -10,3 +10,6 @@ "keywords": [

],
"scripts": {},
"scripts": {
"pretest": "rollup -f cjs -o build/index.js -- index.js",
"test": "tape test/*.js"
},
"main": "build/index.js",

@@ -13,0 +16,0 @@ "jsnext:main": "index",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc