function isStringNode()

in src/rule-unused-fields.js [71:75]


function isStringNode(node) {
  return (
    node != null && node.type === 'Literal' && typeof node.value === 'string'
  );
}