選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
unknown fe79185e87 ali aslani 1年前
..
.github ali aslani 1年前
test ali aslani 1年前
.eslintrc ali aslani 1年前
.nycrc ali aslani 1年前
CHANGELOG.md ali aslani 1年前
LICENSE ali aslani 1年前
README.md ali aslani 1年前
index.js ali aslani 1年前
package.json ali aslani 1年前
shams.js ali aslani 1年前

README.md

has-symbols Version Badge

github actions coverage dependency status dev dependency status License Downloads

npm badge

Determine if the JS environment has Symbol support. Supports spec, or shams.

Example

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.

Supported Symbol shams

Tests

Simply clone the repo, npm install, and run npm test