'a'
mh-two-thousand-and-two
2024-04-12 44d2c92345cd156a59fc327b3060292a282d2893
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
'use strict';
 
var hasOwn = require('hasown');
 
var $TypeError = require('es-errors/type');
 
var Type = require('./Type');
var ToBoolean = require('./ToBoolean');
var IsCallable = require('./IsCallable');
 
// https://262.ecma-international.org/5.1/#sec-8.10.5
 
module.exports = function ToPropertyDescriptor(Obj) {
    if (Type(Obj) !== 'Object') {
        throw new $TypeError('ToPropertyDescriptor requires an object');
    }
 
    var desc = {};
    if (hasOwn(Obj, 'enumerable')) {
        desc['[[Enumerable]]'] = ToBoolean(Obj.enumerable);
    }
    if (hasOwn(Obj, 'configurable')) {
        desc['[[Configurable]]'] = ToBoolean(Obj.configurable);
    }
    if (hasOwn(Obj, 'value')) {
        desc['[[Value]]'] = Obj.value;
    }
    if (hasOwn(Obj, 'writable')) {
        desc['[[Writable]]'] = ToBoolean(Obj.writable);
    }
    if (hasOwn(Obj, 'get')) {
        var getter = Obj.get;
        if (typeof getter !== 'undefined' && !IsCallable(getter)) {
            throw new $TypeError('getter must be a function');
        }
        desc['[[Get]]'] = getter;
    }
    if (hasOwn(Obj, 'set')) {
        var setter = Obj.set;
        if (typeof setter !== 'undefined' && !IsCallable(setter)) {
            throw new $TypeError('setter must be a function');
        }
        desc['[[Set]]'] = setter;
    }
 
    if ((hasOwn(desc, '[[Get]]') || hasOwn(desc, '[[Set]]')) && (hasOwn(desc, '[[Value]]') || hasOwn(desc, '[[Writable]]'))) {
        throw new $TypeError('Invalid property descriptor. Cannot both specify accessors and a value or writable attribute');
    }
    return desc;
};