meteor/meteor

View on GitHub
npm-packages/eslint-plugin-meteor/lib/util/ast/getPropertyName.js

Summary

Maintainability
A
0 mins
Test Coverage
module.exports = function getPropertyName(property) {
  if (property.type === 'Literal') {
    return property.value;
  }
  if (property.type === 'Identifier') {
    return property.name;
  }
  return false;
};