Initial commit, 90% there

This commit is contained in:
mdares
2025-12-02 16:27:21 +00:00
commit 755028af7e
7353 changed files with 1759505 additions and 0 deletions

60
node_modules/inspect-property/test/data/main-data.js generated vendored Normal file
View File

@@ -0,0 +1,60 @@
'use strict';
function functionObject() {
this.inner = 'property';
}
// Function Inner Property
functionObject.functionObjectEnumerablePropEnumerable = 'functionObjectEnumerablePropEnumerableVALUE';
Object.defineProperty(functionObject, 'functionObjectEnumerablePropNonEnumerable', {
configurable: true,
enumerable: false,
writable: true,
value: 'functionObjectEnumerablePropNonEnumerableVALUE'
});
Object.defineProperty(functionObject.prototype, 'protoEnumerableProp', {
configurable: true,
enumerable: true,
writable: true,
value: 'protoEnumerablePropVALUE'
});
Object.defineProperty(functionObject.prototype, 'protoNonEnumerableProp', {
configurable: true,
enumerable: false,
writable: true,
value: 'nonEnumerablePropVALUE'
});
const instanceFromFunctionObject = new functionObject();
Object.defineProperty(instanceFromFunctionObject, 'propEnumerable', {
configurable: true,
enumerable: true,
writable: true,
value: 'propEnumerableVALUE'
});
Object.defineProperty(instanceFromFunctionObject, 'propNonEnumerable', {
configurable: true,
enumerable: false,
writable: true,
value: 'propNonEnumerableVALUE'
});
instanceFromFunctionObject.a = {
b: {
c: x => x
},
d: 3,
f: {
g: 'h'
}
};
module.exports = {
instanceFromFunctionObject,
functionObject
}