Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

babel-plugin-transform-iota

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

babel-plugin-transform-iota

Transforms iota() calls into ever-increasing literals.

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

Babel transform: iota

License: ISC Travis CI Test Status Code of Conduct

Transforms iota() calls into ever-increasing literals, à la Go.

Installation

$ npm install babel-plugin-transform-iota

Usage

.babelrc

{
  "plugins": ["transform-iota"]
}

Via CLI

$ babel --plugins transform-iota script.js

Via Node API

require("babel-core").transform("code", {
  plugins: ["transform-iota"]
});

Synopsis

Input

var foo = iota()
let bar = iota()
bar.baz = iota()
const qux = {
  a: iota(),
  [iota()]: 'b'
}

Output

var foo = [1]
let bar = [2]
bar.baz = [3]
const qux = {
  a: [4],
  [[5]]: 'b'
}

([5] coerces to "5", which becomes a valid key. We cannot directly use "5" as iota, because we want to support the case where we add properties to an iota, and we can't do that on string literals.)

Also removes all functions named iota(), so you can still define them and have a working implementation without Babel (and so your code lints without /* global iota */ overrides). Here's a working example:

function iota () {
  if (!this.i) { this.i = 0 }
  return [this.i += 1]
}

About

Made by Félix Saparelli. Licensed under ISC. Inspired by Go.

Keywords

FAQs

Package last updated on 24 Feb 2016

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