root 3bf41bf355 update | před 1 rokem | |
---|---|---|
.. | ||
.github | před 1 rokem | |
test | před 1 rokem | |
.eslintrc | před 1 rokem | |
.nycrc | před 1 rokem | |
CHANGELOG.md | před 1 rokem | |
LICENSE | před 1 rokem | |
README.md | před 1 rokem | |
index.js | před 1 rokem | |
package.json | před 1 rokem | |
shams.js | před 1 rokem |
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