Emmanuel b7eccee437 Navbar | преди 5 години | |
---|---|---|
.. | ||
test | преди 5 години | |
.eslintrc | преди 5 години | |
.npmignore | преди 5 години | |
.travis.yml | преди 5 години | |
CHANGELOG.md | преди 5 години | |
LICENSE | преди 5 години | |
README.md | преди 5 години | |
index.js | преди 5 години | |
package.json | преди 5 години | |
shams.js | преди 5 години |
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