Updated script that can be controled by Nodejs web app

This commit is contained in:
mac OS
2024-11-25 12:24:18 +07:00
parent c440eda1f4
commit 8b0ab2bd3a
8662 changed files with 1803808 additions and 34 deletions

35
node_modules/gopd/test/index.js generated vendored Normal file
View File

@ -0,0 +1,35 @@
'use strict';
var test = require('tape');
var gOPD = require('../');
test('gOPD', function (t) {
t.test('supported', { skip: !gOPD }, function (st) {
st.equal(typeof gOPD, 'function', 'is a function');
var obj = { x: 1 };
st.ok('x' in obj, 'property exists');
var desc = gOPD(obj, 'x');
st.deepEqual(
desc,
{
configurable: true,
enumerable: true,
value: 1,
writable: true
},
'descriptor is as expected'
);
st.end();
});
t.test('not supported', { skip: gOPD }, function (st) {
st.notOk(gOPD, 'is falsy');
st.end();
});
t.end();
});