Newer
Older
vmk-demo-bot / frontend / node_modules / es6-weak-map / is-weak-map.js
@eugene-sukhodolskiy eugene-sukhodolskiy 17 days ago 403 bytes init
"use strict";

var toStringTagSymbol = require("es6-symbol").toStringTag

  , objToString = Object.prototype.toString
  , id = "[object WeakMap]"
  , Global = typeof WeakMap === "undefined" ? null : WeakMap;

module.exports = function (value) {
	return (value && ((Global && (value instanceof Global)) ||
			(objToString.call(value) === id) || (value[toStringTagSymbol] === "WeakMap"))) ||
			false;
};