strip-literal
Strip comments and string literals from JavaScript code
Last updated a year ago by antfu .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ gnpm install strip-literal 
SYNC missed versions from official npm registry.

strip-literal

NPM version

Strip comments and string literals from JavaScript code. Powered by acorn's tokenizer.

Usage

import { stripLiteral } from 'strip-literal'

stripLiteral('const foo = `//foo ${bar}`') // 'const foo = `       ${bar}`'

Comments, string literals will be replaced by spaces with the same length to keep the source map untouched.

Functions

stripLiteralAcorn

Strip literal using Acorn's tokenizer.

Will throw error if the input is not valid JavaScript.

Source

stripLiteralRegex

Strip literal using RegExp.

This will be faster and can work on non-JavaScript input. But will have some caveats on distinguish strings and comments.

Source

stripLiteral

Strip literal from code.

Try to use stripLiteralAcorn first, and fallback to stripLiteralRegex if Acorn fails.

Source

createIsLiteralPositionAcorn

Returns a function that returns whether the position is in a literal using Acorn's tokenizer.

Will throw error if the input is not valid JavaScript.

Source

Sponsors

License

MIT License © 2022 Anthony Fu

Current Tags

  • 1.3.0                                ...           latest (a year ago)

11 Versions

  • 1.3.0                                ...           a year ago
  • 1.2.0                                ...           a year ago
  • 1.1.0                                ...           a year ago
  • 1.0.1                                ...           2 years ago
  • 1.0.0                                ...           2 years ago
  • 0.4.2                                ...           2 years ago
  • 0.4.1                                ...           2 years ago
  • 0.4.0                                ...           2 years ago
  • 0.3.0                                ...           3 years ago
  • 0.2.0                                ...           3 years ago
  • 0.1.0                                ...           3 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (1)
Dev Dependencies (14)
Dependents (1)

Copyright 2013 - present © cnpmjs.org | Home |