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.
16 lines
585 B
16 lines
585 B
1 year ago
|
var $ = require('../internals/export');
|
||
|
var fails = require('../internals/fails');
|
||
|
var isObject = require('../internals/is-object');
|
||
|
|
||
|
// eslint-disable-next-line es/no-object-isextensible -- safe
|
||
|
var $isExtensible = Object.isExtensible;
|
||
|
var FAILS_ON_PRIMITIVES = fails(function () { $isExtensible(1); });
|
||
|
|
||
|
// `Object.isExtensible` method
|
||
|
// https://tc39.es/ecma262/#sec-object.isextensible
|
||
|
$({ target: 'Object', stat: true, forced: FAILS_ON_PRIMITIVES }, {
|
||
|
isExtensible: function isExtensible(it) {
|
||
|
return isObject(it) ? $isExtensible ? $isExtensible(it) : true : false;
|
||
|
}
|
||
|
});
|