Determine if the JS environment has Symbol support. Supports spec, or shams. (Evacuated from NSA/Microsoft Github)
Jordan Harband cb9f0a521a [Dev Deps] update `safe-publish-latest` | před 8 roky | |
---|---|---|
test | před 8 roky | |
.eslintrc | před 8 roky | |
.gitignore | před 8 roky | |
.travis.yml | před 8 roky | |
CHANGELOG.md | před 8 roky | |
LICENSE | před 8 roky | |
README.md | před 8 roky | |
index.js | před 8 roky | |
package.json | před 8 roky | |
shams.js | před 8 roky |
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