UNPKG

e-lado

Version:

[![CircleCI](https://circleci.com/gh/sharetribe/sharetribe/tree/master.svg?style=svg)](https://circleci.com/gh/sharetribe/sharetribe/tree/master) [![Dependency Status](https://gemnasium.com/sharetribe/sharetribe.png)](https://gemnasium.com/sharetribe/shar

25 lines (22 loc) 651 B
'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = propName; /** * Returns the name of the prop given the JSXAttribute object. */ function propName() { var prop = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; if (!prop.type || prop.type !== 'JSXAttribute') { throw new Error('The prop must be a JSXAttribute collected by the AST parser.'); } switch (prop.name.type) { case 'JSXIdentifier': return prop.name.name; case 'JSXNamespacedName': return prop.name.namespace.name + ':' + prop.name.name.name; default: return undefined; } }