Fix actions/tour

This commit is contained in:
2025-02-13 23:19:32 +01:00
parent 47dd1adb30
commit fa21d30994
4543 changed files with 680810 additions and 0 deletions

20
node_modules/has-proto/accessor.js generated vendored Normal file
View File

@@ -0,0 +1,20 @@
'use strict';
var result = require('./')();
var test = {
__proto__: null,
foo: {}
};
/** @type {import('./accessor')} */
module.exports = function hasAccessor() {
/* eslint no-proto: 0 */
return result
&& !('toString' in test)
// eslint-disable-next-line no-extra-parens
&& /** @type {{ __proto__?: typeof Object.prototype }} */ ({}).__proto__ === Object.prototype
// eslint-disable-next-line no-extra-parens
&& /** @type {ReadonlyArray<never> & { __proto__?: typeof Array.prototype }} */ (
[]).__proto__ === Array.prototype;
};