Dashboard sipadu mbip
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
root d8c1b4a1be initial 5 роки тому
..
test initial 5 роки тому
.eslintrc initial 5 роки тому
.npmignore initial 5 роки тому
.travis.yml initial 5 роки тому
CHANGELOG.md initial 5 роки тому
LICENSE initial 5 роки тому
README.md initial 5 роки тому
index.js initial 5 роки тому
package.json initial 5 роки тому
shams.js initial 5 роки тому

README.md

has-symbols Version Badge

Build Status 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