sensordb2 e64a8defe5 3.17 | hace 1 año | |
---|---|---|
.. | ||
.github | hace 1 año | |
test | hace 1 año | |
.eslintignore | hace 1 año | |
.eslintrc | hace 1 año | |
.nycrc | hace 1 año | |
CHANGELOG.md | hace 1 año | |
LICENSE | hace 1 año | |
README.md | hace 1 año | |
index.js | hace 1 año | |
package.json | hace 1 año | |
shams.js | hace 1 año |
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