mysql/node_modules/has-symbols
Ashish Ranjan d1dc6cc9a7
Azure MySql action v1 (#6)
2019-11-05 13:43:02 +05:30
..
test Azure MySql action v1 (#6) 2019-11-05 13:43:02 +05:30
.eslintrc Azure MySql action v1 (#6) 2019-11-05 13:43:02 +05:30
.npmignore Azure MySql action v1 (#6) 2019-11-05 13:43:02 +05:30
.travis.yml Azure MySql action v1 (#6) 2019-11-05 13:43:02 +05:30
CHANGELOG.md Azure MySql action v1 (#6) 2019-11-05 13:43:02 +05:30
LICENSE Azure MySql action v1 (#6) 2019-11-05 13:43:02 +05:30
README.md Azure MySql action v1 (#6) 2019-11-05 13:43:02 +05:30
index.js Azure MySql action v1 (#6) 2019-11-05 13:43:02 +05:30
package.json Azure MySql action v1 (#6) 2019-11-05 13:43:02 +05:30
shams.js Azure MySql action v1 (#6) 2019-11-05 13:43:02 +05:30

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