MES手机端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

15 lines
287 B

  1. 'use strict';
  2. // Replace `StringLiteral` or `TemplateLiteral` node with raw text
  3. const replaceStringRaw = (fixer, node, raw) =>
  4. fixer.replaceTextRange(
  5. // Ignore quotes and backticks
  6. [
  7. node.range[0] + 1,
  8. node.range[1] - 1,
  9. ],
  10. raw,
  11. );
  12. module.exports = replaceStringRaw;