Socket
Socket
Sign inDemoInstall

babel-plugin-extract-string

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

babel-plugin-extract-string

Babel plugin to extract string from js source file then save into array


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

babel-plugin-extract-string

Babel plugin to extract string from js source file then save into array

API

  • Node
import { transform } from 'babel-core'
import extractString from 'babel-plugin-extract-string'

const result = transform(sourceCode, {
    plugins: [ [extractString, {name: 'abc'}] ]
})

console.log(result.code)
  • .babelrc
{
  "presets": ["es2015"],
  "plugins": [ ["extract-string", {"name": "abc"}] ]
}

OPTIONS

{...} have below keys

  • name

Array name to place into code, replace the position of each string, as arrayName[index]

  • minLength

Don't touch string length less than minLength

  • file

Output file to store extracted string (as json array)

Keywords

FAQs

Package last updated on 16 Mar 2017

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