HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux spn-python 5.15.0-89-generic #99-Ubuntu SMP Mon Oct 30 20:42:41 UTC 2023 x86_64
User: arjun (1000)
PHP: 8.1.2-1ubuntu2.20
Disabled: NONE
Upload Files
File: //home/arjun/projects/buyercall/node_modules/has-symbol-support-x/tests/spec/test.js
'use strict';

var hasSymbolSupport;
if (typeof module === 'object' && module.exports) {
  require('es5-shim');
  require('es5-shim/es5-sham');
  if (typeof JSON === 'undefined') {
    JSON = {};
  }
  require('json3').runInContext(null, JSON);
  require('es6-shim');
  var es7 = require('es7-shim');
  Object.keys(es7).forEach(function (key) {
    var obj = es7[key];
    if (typeof obj.shim === 'function') {
      obj.shim();
    }
  });
  hasSymbolSupport = require('../../index.js');
} else {
  hasSymbolSupport = returnExports;
}

describe('Basic tests', function () {
  it('results should match', function () {
    var expected = typeof Symbol === 'function' && typeof Symbol.iterator === 'symbol';
    expect(hasSymbolSupport).toBe(expected);
  });
});