Snow 1d0b9c5323 增加了node环境 | преди 1 месец | |
---|---|---|
.. | ||
.github | преди 1 месец | |
test | преди 1 месец | |
.eslintrc | преди 1 месец | |
.nycrc | преди 1 месец | |
CHANGELOG.md | преди 1 месец | |
LICENSE | преди 1 месец | |
README.md | преди 1 месец | |
index.d.ts | преди 1 месец | |
index.js | преди 1 месец | |
package.json | преди 1 месец | |
shams.d.ts | преди 1 месец | |
shams.js | преди 1 месец | |
tsconfig.json | преди 1 месец |
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