mirror of
https://github.com/Tonejs/Tone.js
synced 2024-11-17 00:58:09 +00:00
15 lines
332 B
JavaScript
15 lines
332 B
JavaScript
|
define(["Tone/core/Tone", "Tone/signal/GreaterThanZero"], function(Tone){
|
||
|
|
||
|
"use strict";
|
||
|
|
||
|
/**
|
||
|
* @class OR the inputs together. True if at least one of the inputs is true.
|
||
|
* Simply an alias for Tone.GreaterThanZero
|
||
|
*
|
||
|
* @extends {Tone}
|
||
|
* @constructor
|
||
|
*/
|
||
|
Tone.OR = Tone.GreaterThanZero;
|
||
|
|
||
|
return Tone.OR;
|
||
|
});
|