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.
|
'use strict';
|
|
|
|
// Replace `StringLiteral` or `TemplateLiteral` node with raw text
|
|
module.exports = (fixer, node, raw) =>
|
|
fixer.replaceTextRange(
|
|
// Ignore quotes and backticks
|
|
[
|
|
node.range[0] + 1,
|
|
node.range[1] - 1
|
|
],
|
|
raw
|
|
);
|