Some checks failed
CI / go (push) Waiting to run
CI / docker (push) Waiting to run
CI / lint-go (push) Waiting to run
CI / lint-docs (push) Waiting to run
CI / check-paperclip (push) Waiting to run
Deploy static site / Deploy to GitHub Pages (push) Has been cancelled
Deploy static site / Deploy via Docker to hatch.surf (push) Has been cancelled
Resolved conflicts by taking GitHub versions for: - .dockerignore, .gitignore, Dockerfile, README.md, docker-compose.yml Kept deploy.sh updated to: - Pull from GitHub (primary source) - Push to Gitea (push-mirror) - Build from site/ directory (GitHub structure) Co-Authored-By: Paperclip <noreply@paperclip.ing>
41 lines
1.2 KiB
JavaScript
41 lines
1.2 KiB
JavaScript
'use strict';
|
|
|
|
var $gOPD = require('gopd');
|
|
var $TypeError = require('es-errors/type');
|
|
|
|
var every = require('../helpers/every');
|
|
var OwnPropertyKeys = require('own-keys');
|
|
var isObject = require('es-object-atoms/isObject');
|
|
|
|
var IsDataDescriptor = require('./IsDataDescriptor');
|
|
var IsExtensible = require('./IsExtensible');
|
|
var ToPropertyDescriptor = require('./ToPropertyDescriptor');
|
|
|
|
// https://262.ecma-international.org/6.0/#sec-testintegritylevel
|
|
|
|
module.exports = function TestIntegrityLevel(O, level) {
|
|
if (!isObject(O)) {
|
|
throw new $TypeError('Assertion failed: Type(O) is not Object');
|
|
}
|
|
if (level !== 'sealed' && level !== 'frozen') {
|
|
throw new $TypeError('Assertion failed: `level` must be `"sealed"` or `"frozen"`');
|
|
}
|
|
var status = IsExtensible(O);
|
|
if (status || !$gOPD) {
|
|
return false;
|
|
}
|
|
var theKeys = OwnPropertyKeys(O);
|
|
return theKeys.length === 0 || every(theKeys, function (k) {
|
|
var currentDesc = $gOPD(O, k);
|
|
if (typeof currentDesc !== 'undefined') {
|
|
if (currentDesc.configurable) {
|
|
return false;
|
|
}
|
|
if (level === 'frozen' && IsDataDescriptor(ToPropertyDescriptor(currentDesc)) && currentDesc.writable) {
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
});
|
|
};
|