Sha256: c9d3dbb76eeafd3007bceca376afc743370ab0c5487d78b5c6e097a4b0f6dd9b

Contents?: true

Size: 792 Bytes

Versions: 270

Compression:

Stored size: 792 Bytes

Contents

var Symbol = require('./_Symbol'),
    getRawTag = require('./_getRawTag'),
    objectToString = require('./_objectToString');

/** `Object#toString` result references. */
var nullTag = '[object Null]',
    undefinedTag = '[object Undefined]';

/** Built-in value references. */
var symToStringTag = Symbol ? Symbol.toStringTag : undefined;

/**
 * The base implementation of `getTag` without fallbacks for buggy environments.
 *
 * @private
 * @param {*} value The value to query.
 * @returns {string} Returns the `toStringTag`.
 */
function baseGetTag(value) {
  if (value == null) {
    return value === undefined ? undefinedTag : nullTag;
  }
  return (symToStringTag && symToStringTag in Object(value))
    ? getRawTag(value)
    : objectToString(value);
}

module.exports = baseGetTag;

Version data entries

270 entries across 269 versions & 28 rubygems

Version Path
sumomo-0.7.3 data/sumomo/api_modules/node_modules/lodash/_baseGetTag.js
sumomo-0.7.2 data/sumomo/api_modules/node_modules/lodash/_baseGetTag.js
sumomo-0.7.1 data/sumomo/api_modules/node_modules/lodash/_baseGetTag.js
sumomo-0.6.4 data/sumomo/api_modules/node_modules/lodash/_baseGetTag.js
sumomo-0.6.3 data/sumomo/api_modules/node_modules/lodash/_baseGetTag.js
sumomo-0.6.2 data/sumomo/api_modules/node_modules/lodash/_baseGetTag.js
sumomo-0.6.1 data/sumomo/api_modules/node_modules/lodash/_baseGetTag.js
affiliator-0.2.1 node_modules/lodash/_baseGetTag.js
sumomo-0.6.0 data/sumomo/api_modules/node_modules/lodash/_baseGetTag.js
lanes-0.8.0 node_modules/lodash/_baseGetTag.js