New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

es6-computed-properties

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

es6-computed-properties

Computed properties compiled to ES5.

0.0.2
latest
npm
Version published
Weekly downloads
21
-46.15%
Maintainers
1
Weekly downloads
 
Created
Source

es6-computed-properties

Compiles JavaScript written using ES6 computed properties to use ES5- or ES3-compatible syntax. For example, this:

var propName = 'code';

var params = {
    [propName]: true
    ['data' + propName.toUpperCase()]: true
};

console.log(params); // {code: true, dataCode: true}

compiles to this:

ES5 targeting (default):

var $__Object$defineProperty = Object.defineProperty;
var $__0;

var propName = 'code';

var params = ($__0 = {}, $__Object$defineProperty($__0, propName, {
  value: true,
  enumerable: true,
  configurable: true,
  writable: true
}), $__Object$defineProperty($__0, 'data' + propName.toUpperCase(), {
  value: true,
  enumerable: true,
  configurable: true,
  writable: true
}), $__0);

console.log(params); // {code: true, dataCode: true}

If you're using ES5 with accessors (getters/setters) you should compile in ES5 mode, since it correctly handles inherited accessor properties.

In case if you need to support older engines, you may compile to ES3 (runs with {es: 3} compile option, or --es=3 from CLI):

var $__0;

var propName = 'code';
var params = (
  $__0 = {},
  $__0[propName] = true,
  $__0['data' + propName.toUpperCase()] = true,
  $__0
);

console.log(params); // {code: true, dataCode: true}

Install

$ npm install es6-computed-properties

Usage

$ node
> var es6ComputedProperties = require('es6-computed-properties')
> es6ComputedProperties.compile(codeWithComputedProperties)
{ "code": ..., "map": ... }
> es6ComputedProperties.transform(anAst)
anotherAst

Browserify

Browserify support is built in.

$ npm install es6-computed-properties  # install local dependency
$ browserify -t es6-computed-properties $file

Contributing

Build Status

Setup

First, install the development dependencies:

$ npm install

Then, try running the tests:

$ npm test

To run specific example files:

$ node test/runner test/examples/my-example.js test/examples/other-example.js

Pull Requests

  • Fork it
  • Create your feature branch (git checkout -b my-new-feature)
  • Commit your changes (git commit -am 'Add some feature')
  • Push to the branch (git push origin my-new-feature)
  • Create new Pull Request

Keywords

es6

FAQs

Package last updated on 29 Oct 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