Skip to content

Commit

Permalink
Make a build
Browse files Browse the repository at this point in the history
  • Loading branch information
Andreas Dzialocha committed Nov 5, 2017
1 parent 87ff317 commit 17a0a98
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dist/osc.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/osc.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/osc.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/osc.browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ var Message = function () {
createClass(Message, [{
key: 'add',
value: function add(item) {
if (!item) {
if (isUndefined(item)) {
throw new Error('OSC Message needs a valid OSC Atomic Data Type');
}
this.args.push(item);
Expand Down
2 changes: 1 addition & 1 deletion lib/osc.js
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ var Message = function () {
createClass(Message, [{
key: 'add',
value: function add(item) {
if (!item) {
if (isUndefined(item)) {
throw new Error('OSC Message needs a valid OSC Atomic Data Type');
}
this.args.push(item);
Expand Down

0 comments on commit 17a0a98

Please sign in to comment.