You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

has-to-string-tag-x.js 2.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. (function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.returnExports = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(_dereq_,module,exports){
  2. /**
  3. * @file Tests if ES6 @@toStringTag is supported.
  4. * @see {@link http://www.ecma-international.org/ecma-262/6.0/#sec-@@tostringtag|26.3.1 @@toStringTag}
  5. * @version 1.4.1
  6. * @author Xotic750 <Xotic750@gmail.com>
  7. * @copyright Xotic750
  8. * @license {@link <https://opensource.org/licenses/MIT> MIT}
  9. * @module has-to-string-tag-x
  10. */
  11. 'use strict';
  12. /**
  13. * Indicates if `Symbol.toStringTag`exists and is the correct type.
  14. * `true`, if it exists and is the correct type, otherwise `false`.
  15. *
  16. * @type boolean
  17. */
  18. module.exports = _dereq_('has-symbol-support-x') && typeof Symbol.toStringTag === 'symbol';
  19. },{"has-symbol-support-x":2}],2:[function(_dereq_,module,exports){
  20. /**
  21. * @file Tests if ES6 Symbol is supported.
  22. * @version 1.4.1
  23. * @author Xotic750 <Xotic750@gmail.com>
  24. * @copyright Xotic750
  25. * @license {@link <https://opensource.org/licenses/MIT> MIT}
  26. * @module has-symbol-support-x
  27. */
  28. 'use strict';
  29. /**
  30. * Indicates if `Symbol`exists and creates the correct type.
  31. * `true`, if it exists and creates the correct type, otherwise `false`.
  32. *
  33. * @type boolean
  34. */
  35. module.exports = typeof Symbol === 'function' && typeof Symbol('') === 'symbol';
  36. },{}]},{},[1])(1)
  37. });