Socket
Socket
Sign inDemoInstall

enable

Package Overview
Dependencies
Maintainers
2
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

enable

ES6 and ES7 feature detection.


Version published
Weekly downloads
30K
increased by4.54%
Maintainers
2
Weekly downloads
 
Created
Source

enable

NPM version build status Test coverage Gittip David deps node version npm download

Detect es6 and es7 features enable or not.

Install

$ npm install enable --save

Usage

var enable = require('enable');

if (enable.<feature>) {
  console.log(<feature> is supported);
}

/* Example:
if (enable.generator) {
  console.log('supports generator: `function* a() {}`');
}
*/

List of features:

Object related:

  • Object.is
  • Object.assign
  • Object.getOwnPropertySymbols
  • Object.setPrototypeOf
  • Object.observe
  • Object.Object.getOwnPropertyDescriptors

String realted:

  • String.raw
  • String.fromCodePoint
  • String.prototype.codePointAt
  • String.prototype.normalize
  • String.prototype.repeat
  • String.prototype.startsWith
  • String.prototype.endsWith
  • String.prototype.contains
  • String.prototype.anchor
  • String.prototype.big
  • String.prototype.bold
  • String.prototype.fixed
  • String.prototype.fontcolor
  • String.prototype.fontsize
  • String.prototype.italics
  • String.prototype.link
  • String.prototype.small
  • String.prototype.strike
  • String.prototype.sub
  • String.prototype.sup

Number realted:

  • Number.isFinite
  • Number.isInteger
  • Number.isSafeInteger
  • Number.isNaN
  • Number.EPSILON
  • Number.MIN_SAFE_INTEGER

Math realted:

  • Math.clz32
  • Math.imul
  • Math.sign
  • Math.log10
  • Math.log2
  • Math.log1p
  • Math.expm1
  • Math.cosh
  • Math.sinh
  • Math.tanh
  • Math.acosh
  • Math.asinh
  • Math.atanh
  • Math.hypot
  • Math.trunc
  • Math.fround
  • Math.cbrt

RefExp methods:

  • RegExp.prototype.match
  • RegExp.prototype.replace
  • RegExp.prototype.split
  • RegExp.prototype.search

Others:

  • generator.
  • let.
  • const.
  • Promise.
  • class.

Test

$ npm install
$ npm test

Coverage

$ npm test-cov

Keywords

FAQs

Package last updated on 02 Dec 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc