'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');
 
// accessor descriptor properties
var accessor = {
    __proto__: null,
    configurable: 'boolean',
    enumerable: 'boolean',
    get: 'function',
    set: 'function'
};
 
module.exports = function isAccessorDescriptor(obj, prop) {
    if (typeof prop === 'string') {
        var val = Object.getOwnPropertyDescriptor(obj, prop);
        return typeof val !== 'undefined';
    }
 
    if (!obj || typeof obj !== 'object') {
        return false;
    }
 
    if (hasOwn(obj, 'value') || hasOwn(obj, 'writable')) {
        return false;
    }
 
    // one of them must be a function
    if (
        (!hasOwn(obj, 'get') || typeof obj.get !== 'function')
        && (!hasOwn(obj, 'set') || typeof obj.set !== 'function')
    ) {
        return false;
    }
 
    // both of them must be a function or undefined
    if (
        (hasOwn(obj, 'get') && typeof obj.get !== 'function' && typeof obj.get !== 'undefined')
        || (hasOwn(obj, 'set') && typeof obj.set !== 'function' && typeof obj.set !== 'undefined')
    ) {
        return false;
    }
 
    for (var key in obj) { // eslint-disable-line no-restricted-syntax
        if (hasOwn(obj, key) && hasOwn(accessor, key) && typeof obj[key] !== accessor[key] && typeof obj[key] !== 'undefined') {
            return false;
        }
    }
    return true;
};