astro-ghostcms/.pnpm-store/v3/files/e2/c21f9c567f898fa6f41bb1e2a11...

17 lines
389 B
Plaintext
Raw Normal View History

2024-02-14 19:45:06 +00:00
'use strict';
var KeyForSymbol = require('./KeyForSymbol');
var Type = require('./Type');
// https://262.ecma-international.org/14.0/#sec-canbeheldweakly
module.exports = function CanBeHeldWeakly(v) {
if (Type(v) === 'Object') {
return true; // step 1
}
if (typeof v === 'symbol' && typeof KeyForSymbol(v) === 'undefined') {
return true; // step 2
}
return false; // step 3
};