no message

This commit is contained in:
A1300399510
2025-02-19 13:24:22 +08:00
parent e55ba47112
commit 31157ef7cc
999 changed files with 52 additions and 152901 deletions

View File

@@ -1,13 +0,0 @@
'use strict';
var origSymbol = typeof Symbol !== 'undefined' && Symbol;
var hasSymbolSham = require('./shams');
module.exports = function hasNativeSymbols() {
if (typeof origSymbol !== 'function') { return false; }
if (typeof Symbol !== 'function') { return false; }
if (typeof origSymbol('foo') !== 'symbol') { return false; }
if (typeof Symbol('bar') !== 'symbol') { return false; }
return hasSymbolSham();
};