astro-ghostcms/.pnpm-store/v3/files/dd/60299532c1dd1e538612f80805f...

15 lines
427 B
Plaintext

'use strict';
// eslint-disable-next-line consistent-return
module.exports = function runSymbolTests(t) {
t.equal(typeof Symbol, 'function', 'global Symbol is a function');
t.ok(Symbol.toStringTag, 'Symbol.toStringTag exists');
if (typeof Symbol !== 'function' || !Symbol.toStringTag) { return false; }
var obj = {};
obj[Symbol.toStringTag] = 'test';
t.equal(Object.prototype.toString.call(obj), '[object test]');
};