.. | |||
.github | 3 years ago | ||
test | 3 years ago | ||
.eslintignore | 3 years ago | ||
.eslintrc | 3 years ago | ||
.nycrc | 3 years ago | ||
CHANGELOG.md | 3 years ago | ||
LICENSE | 3 years ago | ||
README.md | 3 years ago | ||
index.js | 3 years ago | ||
package.json | 3 years ago | ||
shams.js | 3 years ago |
Determine if the JS environment has Symbol support. Supports spec, or shams.
var hasSymbols = require('has-symbols'); hasSymbols() === true; // if the environment has native Symbol support. Not polyfillable, not forgeable. var hasSymbolsKinda = require('has-symbols/shams'); hasSymbolsKinda() === true; // if the environment has a Symbol sham that mostly follows the spec.
Simply clone the repo, npm install
, and run npm test