mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-25 06:49:15 +01:00
8 lines
215 B
JavaScript
Vendored
8 lines
215 B
JavaScript
Vendored
// Exports true if environment provides native `Symbol` implementation
|
|
|
|
"use strict";
|
|
|
|
var Symbol = require("ext/global-this").Symbol;
|
|
|
|
module.exports = typeof Symbol === "function" && typeof Symbol() === "symbol";
|