mirror of
https://github.com/Tonejs/Tone.js
synced 2024-11-16 16:48:00 +00:00
documenting Tone.Not
This commit is contained in:
parent
00b95dad6c
commit
04359f6dbb
1 changed files with 6 additions and 0 deletions
|
@ -2,6 +2,12 @@ define(["Tone/core/Tone", "Tone/signal/EqualZero"], function(Tone){
|
|||
|
||||
"use strict";
|
||||
|
||||
/**
|
||||
* @class Just an alias for EqualZero. but has the same effect as a NOT operator.
|
||||
*
|
||||
* @constructor
|
||||
* @extends {Tone}
|
||||
*/
|
||||
Tone.Not = Tone.EqualZero;
|
||||
|
||||
return Tone.Not;
|
||||
|
|
Loading…
Reference in a new issue