mirror of
https://github.com/samsonjs/batteries.git
synced 2026-03-25 09:15:46 +00:00
fix syntax error in set.js
This commit is contained in:
parent
8b5841587f
commit
483210b91f
1 changed files with 1 additions and 1 deletions
|
|
@ -63,7 +63,7 @@ Set.prototype.toArray = function() {
|
|||
};
|
||||
|
||||
Set.prototype.union = function(other) {
|
||||
var ms = this.members;
|
||||
var ms = this.members
|
||||
, u = ownProps(this.members).map(function(k) { return ms[k]; });
|
||||
ms = other.members;
|
||||
u = u.concat(ownProps(ms).map(function(k) { return ms[k]; }));
|
||||
|
|
|
|||
Loading…
Reference in a new issue