合伙人运营小程序
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
dong 488fa3b88d 更换接口日常优化 1 gadu atpakaļ
..
.github 更换接口日常优化 1 gadu atpakaļ
test 更换接口日常优化 1 gadu atpakaļ
.eslintrc 更换接口日常优化 1 gadu atpakaļ
.nycrc 更换接口日常优化 1 gadu atpakaļ
CHANGELOG.md 更换接口日常优化 1 gadu atpakaļ
LICENSE 更换接口日常优化 1 gadu atpakaļ
README.md 更换接口日常优化 1 gadu atpakaļ
index.js 更换接口日常优化 1 gadu atpakaļ
package.json 更换接口日常优化 1 gadu atpakaļ
shams.js 更换接口日常优化 1 gadu atpakaļ

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