Function: js--pitem-strname
js--pitem-strname is a byte-compiled function defined in js.el.gz.
Signature
(js--pitem-strname PITEM)
Documentation
Last part of the name of PITEM, as a string or symbol.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/js.el.gz
(defun js--pitem-strname (pitem)
"Last part of the name of PITEM, as a string or symbol."
(let ((name (js--pitem-name pitem)))
(if (consp name)
(car (last name))
name)))