Tone.js/Tone/signal/OR.js
Yotam Mann fe96656d2a AND and OR classes
Fixes #22
2014-10-03 17:20:00 -04:00

15 lines
No EOL
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;
});