Son CV dans un terminal web en Javascript!
https://terminal-cv.gregandev.fr
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
771 B
20 lines
771 B
1 year ago
|
'use strict';
|
||
|
var IS_PURE = require('../internals/is-pure');
|
||
|
var $ = require('../internals/export');
|
||
|
var call = require('../internals/function-call');
|
||
|
var aCallable = require('../internals/a-callable');
|
||
|
var anObject = require('../internals/an-object');
|
||
|
var iterate = require('../internals/iterate');
|
||
|
|
||
|
// `Set.prototype.isDisjointFrom` method
|
||
|
// https://tc39.github.io/proposal-set-methods/#Set.prototype.isDisjointFrom
|
||
|
$({ target: 'Set', proto: true, real: true, forced: IS_PURE }, {
|
||
|
isDisjointFrom: function isDisjointFrom(iterable) {
|
||
|
var set = anObject(this);
|
||
|
var hasCheck = aCallable(set.has);
|
||
|
return !iterate(iterable, function (value, stop) {
|
||
|
if (call(hasCheck, set, value) === true) return stop();
|
||
|
}, { INTERRUPTED: true }).stopped;
|
||
|
}
|
||
|
});
|