MCPcopy Index your code
hub / github.com/adaltas/node-csv / isSymbol

Function isSymbol

packages/csv-stringify/lib/utils/get.js:30–36  ·  view source on GitHub ↗
(value)

Source from the content-addressed store, hash-verified

28};
29
30const isSymbol = function (value) {
31 const type = typeof value;
32 return (
33 type === "symbol" ||
34 (type === "object" && value && getTag(value) === "[object Symbol]")
35 );
36};
37
38const isKey = function (value, object) {
39 if (Array.isArray(value)) {

Callers 2

isKeyFunction · 0.85
toKeyFunction · 0.85

Calls 1

getTagFunction · 0.85

Tested by

no test coverage detected