mirror of
https://github.com/flynx/types.js.git
synced 2025-10-29 10:30:08 +00:00
32 lines
1.0 KiB
JavaScript
32 lines
1.0 KiB
JavaScript
/**********************************************************************
|
|
*
|
|
*
|
|
*
|
|
**********************************************************************/
|
|
((typeof define)[0]=='u'?function(f){module.exports=f(require)}:define)
|
|
(function(require){ var module={} // make module AMD/node compatible...
|
|
/*********************************************************************/
|
|
|
|
|
|
|
|
|
|
/*********************************************************************/
|
|
|
|
// Set set operation shorthands...
|
|
Set.prototype.unite = function(other){
|
|
return new Set([...this, ...other]) }
|
|
Set.prototype.intersect = function(other){
|
|
var test = other.has ? 'has' : 'includes'
|
|
return new Set([...this]
|
|
.filter(function(e){ return other[test](e) })) }
|
|
Set.prototype.subtract = function(other){
|
|
other = new Set(other)
|
|
return new Set([...this]
|
|
.filter(function(e){ return !other.has(e) })) }
|
|
|
|
|
|
|
|
|
|
/**********************************************************************
|
|
* vim:set ts=4 sw=4 : */ return module })
|